1. Registry
  2. Packages
  3. Datadog Provider
  4. API Docs
  5. PowerpackV2
Viewing docs for Datadog v5.10.0
published on Thursday, Jul 30, 2026 by Pulumi
datadog logo
Viewing docs for Datadog v5.10.0
published on Thursday, Jul 30, 2026 by Pulumi

    [BETA] Provides an updated version of the Datadog powerpack resource which improves compliance with Datadog’s powerpack API spec. This version is currently experimental and prone to changes.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as datadog from "@pulumi/datadog";
    
    // Manage Datadog Powerpacks
    const foo = new datadog.PowerpackV2("foo", {
        description: "Created using the Datadog provider in terraform",
        liveSpan: "4h",
        layout: {
            height: 10,
            width: 3,
            x: 1,
            y: 0,
        },
        templateVariables: [{
            defaults: ["defaults"],
            name: "datacenter",
        }],
        widgets: [{
            timeseriesDefinition: {
                requests: [{
                    formulas: [{
                        formulaExpression: "my_query_1",
                    }],
                    queries: [{
                        metricQuery: {
                            dataSource: "metrics",
                            query: "avg:system.cpu.user{*} by {env}",
                            name: "my_query_1",
                            aggregator: "avg",
                        },
                    }],
                }],
                title: "CPU Usage",
            },
        }],
    });
    
    import pulumi
    import pulumi_datadog as datadog
    
    # Manage Datadog Powerpacks
    foo = datadog.PowerpackV2("foo",
        description="Created using the Datadog provider in terraform",
        live_span="4h",
        layout={
            "height": 10,
            "width": 3,
            "x": 1,
            "y": 0,
        },
        template_variables=[{
            "defaults": ["defaults"],
            "name": "datacenter",
        }],
        widgets=[{
            "timeseries_definition": {
                "requests": [{
                    "formulas": [{
                        "formula_expression": "my_query_1",
                    }],
                    "queries": [{
                        "metric_query": {
                            "data_source": "metrics",
                            "query": "avg:system.cpu.user{*} by {env}",
                            "name": "my_query_1",
                            "aggregator": "avg",
                        },
                    }],
                }],
                "title": "CPU Usage",
            },
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-datadog/sdk/v5/go/datadog"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Manage Datadog Powerpacks
    		_, err := datadog.NewPowerpackV2(ctx, "foo", &datadog.PowerpackV2Args{
    			Description: pulumi.String("Created using the Datadog provider in terraform"),
    			LiveSpan:    pulumi.String("4h"),
    			Layout: &datadog.PowerpackV2LayoutArgs{
    				Height: pulumi.Int(10),
    				Width:  pulumi.Int(3),
    				X:      pulumi.Int(1),
    				Y:      pulumi.Int(0),
    			},
    			TemplateVariables: datadog.PowerpackV2TemplateVariableArray{
    				&datadog.PowerpackV2TemplateVariableArgs{
    					Defaults: pulumi.StringArray{
    						pulumi.String("defaults"),
    					},
    					Name: pulumi.String("datacenter"),
    				},
    			},
    			Widgets: datadog.PowerpackV2WidgetArray{
    				&datadog.PowerpackV2WidgetArgs{
    					TimeseriesDefinition: &datadog.PowerpackV2WidgetTimeseriesDefinitionArgs{
    						Requests: datadog.PowerpackV2WidgetTimeseriesDefinitionRequestArray{
    							&datadog.PowerpackV2WidgetTimeseriesDefinitionRequestArgs{
    								Formulas: datadog.PowerpackV2WidgetTimeseriesDefinitionRequestFormulaArray{
    									&datadog.PowerpackV2WidgetTimeseriesDefinitionRequestFormulaArgs{
    										FormulaExpression: pulumi.String("my_query_1"),
    									},
    								},
    								Queries: datadog.PowerpackV2WidgetTimeseriesDefinitionRequestQueryArray{
    									&datadog.PowerpackV2WidgetTimeseriesDefinitionRequestQueryArgs{
    										MetricQuery: &datadog.PowerpackV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs{
    											DataSource: pulumi.String("metrics"),
    											Query:      pulumi.String("avg:system.cpu.user{*} by {env}"),
    											Name:       pulumi.String("my_query_1"),
    											Aggregator: pulumi.String("avg"),
    										},
    									},
    								},
    							},
    						},
    						Title: pulumi.String("CPU Usage"),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Datadog = Pulumi.Datadog;
    
    return await Deployment.RunAsync(() => 
    {
        // Manage Datadog Powerpacks
        var foo = new Datadog.PowerpackV2("foo", new()
        {
            Description = "Created using the Datadog provider in terraform",
            LiveSpan = "4h",
            Layout = new Datadog.Inputs.PowerpackV2LayoutArgs
            {
                Height = 10,
                Width = 3,
                X = 1,
                Y = 0,
            },
            TemplateVariables = new[]
            {
                new Datadog.Inputs.PowerpackV2TemplateVariableArgs
                {
                    Defaults = new[]
                    {
                        "defaults",
                    },
                    Name = "datacenter",
                },
            },
            Widgets = new[]
            {
                new Datadog.Inputs.PowerpackV2WidgetArgs
                {
                    TimeseriesDefinition = new Datadog.Inputs.PowerpackV2WidgetTimeseriesDefinitionArgs
                    {
                        Requests = new[]
                        {
                            new Datadog.Inputs.PowerpackV2WidgetTimeseriesDefinitionRequestArgs
                            {
                                Formulas = new[]
                                {
                                    new Datadog.Inputs.PowerpackV2WidgetTimeseriesDefinitionRequestFormulaArgs
                                    {
                                        FormulaExpression = "my_query_1",
                                    },
                                },
                                Queries = new[]
                                {
                                    new Datadog.Inputs.PowerpackV2WidgetTimeseriesDefinitionRequestQueryArgs
                                    {
                                        MetricQuery = new Datadog.Inputs.PowerpackV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs
                                        {
                                            DataSource = "metrics",
                                            Query = "avg:system.cpu.user{*} by {env}",
                                            Name = "my_query_1",
                                            Aggregator = "avg",
                                        },
                                    },
                                },
                            },
                        },
                        Title = "CPU Usage",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datadog.PowerpackV2;
    import com.pulumi.datadog.PowerpackV2Args;
    import com.pulumi.datadog.inputs.PowerpackV2LayoutArgs;
    import com.pulumi.datadog.inputs.PowerpackV2TemplateVariableArgs;
    import com.pulumi.datadog.inputs.PowerpackV2WidgetArgs;
    import com.pulumi.datadog.inputs.PowerpackV2WidgetTimeseriesDefinitionArgs;
    import com.pulumi.datadog.inputs.PowerpackV2WidgetTimeseriesDefinitionRequestArgs;
    import com.pulumi.datadog.inputs.PowerpackV2WidgetTimeseriesDefinitionRequestFormulaArgs;
    import com.pulumi.datadog.inputs.PowerpackV2WidgetTimeseriesDefinitionRequestQueryArgs;
    import com.pulumi.datadog.inputs.PowerpackV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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) {
            // Manage Datadog Powerpacks
            var foo = new PowerpackV2("foo", PowerpackV2Args.builder()
                .description("Created using the Datadog provider in terraform")
                .liveSpan("4h")
                .layout(PowerpackV2LayoutArgs.builder()
                    .height(10)
                    .width(3)
                    .x(1)
                    .y(0)
                    .build())
                .templateVariables(PowerpackV2TemplateVariableArgs.builder()
                    .defaults("defaults")
                    .name("datacenter")
                    .build())
                .widgets(PowerpackV2WidgetArgs.builder()
                    .timeseriesDefinition(PowerpackV2WidgetTimeseriesDefinitionArgs.builder()
                        .requests(PowerpackV2WidgetTimeseriesDefinitionRequestArgs.builder()
                            .formulas(PowerpackV2WidgetTimeseriesDefinitionRequestFormulaArgs.builder()
                                .formulaExpression("my_query_1")
                                .build())
                            .queries(PowerpackV2WidgetTimeseriesDefinitionRequestQueryArgs.builder()
                                .metricQuery(PowerpackV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs.builder()
                                    .dataSource("metrics")
                                    .query("avg:system.cpu.user{*} by {env}")
                                    .name("my_query_1")
                                    .aggregator("avg")
                                    .build())
                                .build())
                            .build())
                        .title("CPU Usage")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      # Manage Datadog Powerpacks
      foo:
        type: datadog:PowerpackV2
        properties:
          description: Created using the Datadog provider in terraform
          liveSpan: 4h
          layout:
            height: 10
            width: 3
            x: 1
            y: 0
          templateVariables:
            - defaults:
                - defaults
              name: datacenter
          widgets:
            - timeseriesDefinition:
                requests:
                  - formulas:
                      - formulaExpression: my_query_1
                    queries:
                      - metricQuery:
                          dataSource: metrics
                          query: avg:system.cpu.user{*} by {env}
                          name: my_query_1
                          aggregator: avg
                title: CPU Usage
    
    pulumi {
      required_providers {
        datadog = {
          source = "pulumi/datadog"
        }
      }
    }
    
    # Manage Datadog Powerpacks
    resource "datadog_powerpackv2" "foo" {
      description = "Created using the Datadog provider in terraform"
      live_span   = "4h"
      layout = {
        height = 10
        width  = 3
        x      = 1
        y      = 0
      }
      template_variables {
        defaults = ["defaults"]
        name     = "datacenter"
      }
      widgets {
        timeseries_definition = {
          requests = [{
            "formulas" = [{
              "formulaExpression" = "my_query_1"
            }]
            "queries" = [{
              "metricQuery" = {
                "dataSource" = "metrics"
                "query"      = "avg:system.cpu.user{*} by {env}"
                "name"       = "my_query_1"
                "aggregator" = "avg"
              }
            }]
          }]
          title = "CPU Usage"
        }
      }
    }
    

    Create PowerpackV2 Resource

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

    Constructor syntax

    new PowerpackV2(name: string, args?: PowerpackV2Args, opts?: CustomResourceOptions);
    @overload
    def PowerpackV2(resource_name: str,
                    args: Optional[PowerpackV2Args] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def PowerpackV2(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    description: Optional[str] = None,
                    layout: Optional[PowerpackV2LayoutArgs] = None,
                    live_span: Optional[str] = None,
                    name: Optional[str] = None,
                    show_title: Optional[bool] = None,
                    tags: Optional[Sequence[str]] = None,
                    template_variables: Optional[Sequence[PowerpackV2TemplateVariableArgs]] = None,
                    widgets: Optional[Sequence[PowerpackV2WidgetArgs]] = None)
    func NewPowerpackV2(ctx *Context, name string, args *PowerpackV2Args, opts ...ResourceOption) (*PowerpackV2, error)
    public PowerpackV2(string name, PowerpackV2Args? args = null, CustomResourceOptions? opts = null)
    public PowerpackV2(String name, PowerpackV2Args args)
    public PowerpackV2(String name, PowerpackV2Args args, CustomResourceOptions options)
    
    type: datadog:PowerpackV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "datadog_powerpack_v2" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args PowerpackV2Args
    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 PowerpackV2Args
    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 PowerpackV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PowerpackV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PowerpackV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Description string
    The description of the powerpack.
    Layout PowerpackV2Layout
    The layout of the powerpack on a free-form dashboard.
    LiveSpan string
    The timeframe to use when displaying the powerpack.
    Name string
    The name for the powerpack.
    ShowTitle bool
    Whether or not title should be displayed in the powerpack.
    Tags List<string>
    List of tags to identify this powerpack.
    TemplateVariables List<PowerpackV2TemplateVariable>
    The list of template variables for this powerpack.
    Widgets List<PowerpackV2Widget>
    The list of widgets to display in the powerpack.
    Description string
    The description of the powerpack.
    Layout PowerpackV2LayoutArgs
    The layout of the powerpack on a free-form dashboard.
    LiveSpan string
    The timeframe to use when displaying the powerpack.
    Name string
    The name for the powerpack.
    ShowTitle bool
    Whether or not title should be displayed in the powerpack.
    Tags []string
    List of tags to identify this powerpack.
    TemplateVariables []PowerpackV2TemplateVariableArgs
    The list of template variables for this powerpack.
    Widgets []PowerpackV2WidgetArgs
    The list of widgets to display in the powerpack.
    description string
    The description of the powerpack.
    layout object
    The layout of the powerpack on a free-form dashboard.
    live_span string
    The timeframe to use when displaying the powerpack.
    name string
    The name for the powerpack.
    show_title bool
    Whether or not title should be displayed in the powerpack.
    tags list(string)
    List of tags to identify this powerpack.
    template_variables list(object)
    The list of template variables for this powerpack.
    widgets list(object)
    The list of widgets to display in the powerpack.
    description String
    The description of the powerpack.
    layout PowerpackV2Layout
    The layout of the powerpack on a free-form dashboard.
    liveSpan String
    The timeframe to use when displaying the powerpack.
    name String
    The name for the powerpack.
    showTitle Boolean
    Whether or not title should be displayed in the powerpack.
    tags List<String>
    List of tags to identify this powerpack.
    templateVariables List<PowerpackV2TemplateVariable>
    The list of template variables for this powerpack.
    widgets List<PowerpackV2Widget>
    The list of widgets to display in the powerpack.
    description string
    The description of the powerpack.
    layout PowerpackV2Layout
    The layout of the powerpack on a free-form dashboard.
    liveSpan string
    The timeframe to use when displaying the powerpack.
    name string
    The name for the powerpack.
    showTitle boolean
    Whether or not title should be displayed in the powerpack.
    tags string[]
    List of tags to identify this powerpack.
    templateVariables PowerpackV2TemplateVariable[]
    The list of template variables for this powerpack.
    widgets PowerpackV2Widget[]
    The list of widgets to display in the powerpack.
    description str
    The description of the powerpack.
    layout PowerpackV2LayoutArgs
    The layout of the powerpack on a free-form dashboard.
    live_span str
    The timeframe to use when displaying the powerpack.
    name str
    The name for the powerpack.
    show_title bool
    Whether or not title should be displayed in the powerpack.
    tags Sequence[str]
    List of tags to identify this powerpack.
    template_variables Sequence[PowerpackV2TemplateVariableArgs]
    The list of template variables for this powerpack.
    widgets Sequence[PowerpackV2WidgetArgs]
    The list of widgets to display in the powerpack.
    description String
    The description of the powerpack.
    layout Property Map
    The layout of the powerpack on a free-form dashboard.
    liveSpan String
    The timeframe to use when displaying the powerpack.
    name String
    The name for the powerpack.
    showTitle Boolean
    Whether or not title should be displayed in the powerpack.
    tags List<String>
    List of tags to identify this powerpack.
    templateVariables List<Property Map>
    The list of template variables for this powerpack.
    widgets List<Property Map>
    The list of widgets to display in the powerpack.

    Outputs

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

    Get an existing PowerpackV2 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?: PowerpackV2State, opts?: CustomResourceOptions): PowerpackV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            layout: Optional[PowerpackV2LayoutArgs] = None,
            live_span: Optional[str] = None,
            name: Optional[str] = None,
            show_title: Optional[bool] = None,
            tags: Optional[Sequence[str]] = None,
            template_variables: Optional[Sequence[PowerpackV2TemplateVariableArgs]] = None,
            widgets: Optional[Sequence[PowerpackV2WidgetArgs]] = None) -> PowerpackV2
    func GetPowerpackV2(ctx *Context, name string, id IDInput, state *PowerpackV2State, opts ...ResourceOption) (*PowerpackV2, error)
    public static PowerpackV2 Get(string name, Input<string> id, PowerpackV2State? state, CustomResourceOptions? opts = null)
    public static PowerpackV2 get(String name, Output<String> id, PowerpackV2State state, CustomResourceOptions options)
    resources:  _:    type: datadog:PowerpackV2    get:      id: ${id}
    import {
      to = datadog_powerpack_v2.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Description string
    The description of the powerpack.
    Layout PowerpackV2Layout
    The layout of the powerpack on a free-form dashboard.
    LiveSpan string
    The timeframe to use when displaying the powerpack.
    Name string
    The name for the powerpack.
    ShowTitle bool
    Whether or not title should be displayed in the powerpack.
    Tags List<string>
    List of tags to identify this powerpack.
    TemplateVariables List<PowerpackV2TemplateVariable>
    The list of template variables for this powerpack.
    Widgets List<PowerpackV2Widget>
    The list of widgets to display in the powerpack.
    Description string
    The description of the powerpack.
    Layout PowerpackV2LayoutArgs
    The layout of the powerpack on a free-form dashboard.
    LiveSpan string
    The timeframe to use when displaying the powerpack.
    Name string
    The name for the powerpack.
    ShowTitle bool
    Whether or not title should be displayed in the powerpack.
    Tags []string
    List of tags to identify this powerpack.
    TemplateVariables []PowerpackV2TemplateVariableArgs
    The list of template variables for this powerpack.
    Widgets []PowerpackV2WidgetArgs
    The list of widgets to display in the powerpack.
    description string
    The description of the powerpack.
    layout object
    The layout of the powerpack on a free-form dashboard.
    live_span string
    The timeframe to use when displaying the powerpack.
    name string
    The name for the powerpack.
    show_title bool
    Whether or not title should be displayed in the powerpack.
    tags list(string)
    List of tags to identify this powerpack.
    template_variables list(object)
    The list of template variables for this powerpack.
    widgets list(object)
    The list of widgets to display in the powerpack.
    description String
    The description of the powerpack.
    layout PowerpackV2Layout
    The layout of the powerpack on a free-form dashboard.
    liveSpan String
    The timeframe to use when displaying the powerpack.
    name String
    The name for the powerpack.
    showTitle Boolean
    Whether or not title should be displayed in the powerpack.
    tags List<String>
    List of tags to identify this powerpack.
    templateVariables List<PowerpackV2TemplateVariable>
    The list of template variables for this powerpack.
    widgets List<PowerpackV2Widget>
    The list of widgets to display in the powerpack.
    description string
    The description of the powerpack.
    layout PowerpackV2Layout
    The layout of the powerpack on a free-form dashboard.
    liveSpan string
    The timeframe to use when displaying the powerpack.
    name string
    The name for the powerpack.
    showTitle boolean
    Whether or not title should be displayed in the powerpack.
    tags string[]
    List of tags to identify this powerpack.
    templateVariables PowerpackV2TemplateVariable[]
    The list of template variables for this powerpack.
    widgets PowerpackV2Widget[]
    The list of widgets to display in the powerpack.
    description str
    The description of the powerpack.
    layout PowerpackV2LayoutArgs
    The layout of the powerpack on a free-form dashboard.
    live_span str
    The timeframe to use when displaying the powerpack.
    name str
    The name for the powerpack.
    show_title bool
    Whether or not title should be displayed in the powerpack.
    tags Sequence[str]
    List of tags to identify this powerpack.
    template_variables Sequence[PowerpackV2TemplateVariableArgs]
    The list of template variables for this powerpack.
    widgets Sequence[PowerpackV2WidgetArgs]
    The list of widgets to display in the powerpack.
    description String
    The description of the powerpack.
    layout Property Map
    The layout of the powerpack on a free-form dashboard.
    liveSpan String
    The timeframe to use when displaying the powerpack.
    name String
    The name for the powerpack.
    showTitle Boolean
    Whether or not title should be displayed in the powerpack.
    tags List<String>
    List of tags to identify this powerpack.
    templateVariables List<Property Map>
    The list of template variables for this powerpack.
    widgets List<Property Map>
    The list of widgets to display in the powerpack.

    Supporting Types

    Note: There are over 1000 nested types for this resource. Only the first 1000 types are included in this documentation.

    PowerpackV2Layout, PowerpackV2LayoutArgs

    Height int
    The height of the widget.
    Width int
    The width of the widget.
    X int
    The position of the widget on the x (horizontal) axis.
    Y int
    The position of the widget on the y (vertical) axis.
    Height int
    The height of the widget.
    Width int
    The width of the widget.
    X int
    The position of the widget on the x (horizontal) axis.
    Y int
    The position of the widget on the y (vertical) axis.
    height number
    The height of the widget.
    width number
    The width of the widget.
    x number
    The position of the widget on the x (horizontal) axis.
    y number
    The position of the widget on the y (vertical) axis.
    height Integer
    The height of the widget.
    width Integer
    The width of the widget.
    x Integer
    The position of the widget on the x (horizontal) axis.
    y Integer
    The position of the widget on the y (vertical) axis.
    height number
    The height of the widget.
    width number
    The width of the widget.
    x number
    The position of the widget on the x (horizontal) axis.
    y number
    The position of the widget on the y (vertical) axis.
    height int
    The height of the widget.
    width int
    The width of the widget.
    x int
    The position of the widget on the x (horizontal) axis.
    y int
    The position of the widget on the y (vertical) axis.
    height Number
    The height of the widget.
    width Number
    The width of the widget.
    x Number
    The position of the widget on the x (horizontal) axis.
    y Number
    The position of the widget on the y (vertical) axis.

    PowerpackV2TemplateVariable, PowerpackV2TemplateVariableArgs

    Name string
    The name of the powerpack template variable.
    Defaults List<string>
    One or many default values for powerpack template variables on load.
    Name string
    The name of the powerpack template variable.
    Defaults []string
    One or many default values for powerpack template variables on load.
    name string
    The name of the powerpack template variable.
    defaults list(string)
    One or many default values for powerpack template variables on load.
    name String
    The name of the powerpack template variable.
    defaults List<String>
    One or many default values for powerpack template variables on load.
    name string
    The name of the powerpack template variable.
    defaults string[]
    One or many default values for powerpack template variables on load.
    name str
    The name of the powerpack template variable.
    defaults Sequence[str]
    One or many default values for powerpack template variables on load.
    name String
    The name of the powerpack template variable.
    defaults List<String>
    One or many default values for powerpack template variables on load.

    PowerpackV2Widget, PowerpackV2WidgetArgs

    AlertGraphDefinition PowerpackV2WidgetAlertGraphDefinition
    The definition for a Alert Graph widget.
    AlertValueDefinition PowerpackV2WidgetAlertValueDefinition
    The definition for a Alert Value widget.
    BarChartDefinition PowerpackV2WidgetBarChartDefinition
    The definition for a Bar Chart widget.
    ChangeDefinition PowerpackV2WidgetChangeDefinition
    The definition for a Change widget.
    CheckStatusDefinition PowerpackV2WidgetCheckStatusDefinition
    The definition for a Check Status widget.
    DistributionDefinition PowerpackV2WidgetDistributionDefinition
    The definition for a Distribution widget.
    EventStreamDefinition PowerpackV2WidgetEventStreamDefinition
    The definition for a Event Stream widget.
    EventTimelineDefinition PowerpackV2WidgetEventTimelineDefinition
    The definition for a Event Timeline widget.
    FreeTextDefinition PowerpackV2WidgetFreeTextDefinition
    The definition for a Free Text widget.
    FunnelDefinition PowerpackV2WidgetFunnelDefinition
    The definition for a Funnel widget.
    GeomapDefinition PowerpackV2WidgetGeomapDefinition
    The definition for a Geomap widget.
    GroupDefinition PowerpackV2WidgetGroupDefinition
    The definition for a Group widget.
    HeatmapDefinition PowerpackV2WidgetHeatmapDefinition
    The definition for a Heatmap widget.
    HostmapDefinition PowerpackV2WidgetHostmapDefinition
    The definition for a Hostmap widget.
    Id int
    The ID of the widget.
    IframeDefinition PowerpackV2WidgetIframeDefinition
    The definition for an Iframe widget.
    ImageDefinition PowerpackV2WidgetImageDefinition
    The definition for an Image widget
    ListStreamDefinition PowerpackV2WidgetListStreamDefinition
    The definition for a List Stream widget.
    LogStreamDefinition PowerpackV2WidgetLogStreamDefinition
    The definition for an Log Stream widget.
    ManageStatusDefinition PowerpackV2WidgetManageStatusDefinition
    The definition for an Manage Status widget.
    NoteDefinition PowerpackV2WidgetNoteDefinition
    The definition for a Note widget.
    PointPlotDefinition PowerpackV2WidgetPointPlotDefinition
    The definition for a Point Plot widget.
    QueryTableDefinition PowerpackV2WidgetQueryTableDefinition
    The definition for a Query Table widget.
    QueryValueDefinition PowerpackV2WidgetQueryValueDefinition
    The definition for a Query Value widget.
    RunWorkflowDefinition PowerpackV2WidgetRunWorkflowDefinition
    The definition for a Run Workflow widget.
    SankeyDefinition PowerpackV2WidgetSankeyDefinition
    The definition for a Sankey diagram widget.
    ScatterplotDefinition PowerpackV2WidgetScatterplotDefinition
    The definition for a Scatterplot widget.
    ServiceLevelObjectiveDefinition PowerpackV2WidgetServiceLevelObjectiveDefinition
    The definition for a Service Level Objective widget.
    ServicemapDefinition PowerpackV2WidgetServicemapDefinition
    The definition for a Service Map widget.
    SloListDefinition PowerpackV2WidgetSloListDefinition
    The definition for an SLO (Service Level Objective) List widget.
    SunburstDefinition PowerpackV2WidgetSunburstDefinition
    The definition for a Sunburst widget.
    TimeseriesDefinition PowerpackV2WidgetTimeseriesDefinition
    The definition for a Timeseries widget.
    ToplistDefinition PowerpackV2WidgetToplistDefinition
    The definition for a Toplist widget.
    TopologyMapDefinition PowerpackV2WidgetTopologyMapDefinition
    The definition for a Topology Map widget.
    TraceServiceDefinition PowerpackV2WidgetTraceServiceDefinition
    The definition for a Trace Service widget.
    TreemapDefinition PowerpackV2WidgetTreemapDefinition
    The definition for a Treemap widget.
    WidgetLayout PowerpackV2WidgetWidgetLayout
    The layout of the widget on a 'free' dashboard.
    WildcardDefinition PowerpackV2WidgetWildcardDefinition
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    AlertGraphDefinition PowerpackV2WidgetAlertGraphDefinition
    The definition for a Alert Graph widget.
    AlertValueDefinition PowerpackV2WidgetAlertValueDefinition
    The definition for a Alert Value widget.
    BarChartDefinition PowerpackV2WidgetBarChartDefinition
    The definition for a Bar Chart widget.
    ChangeDefinition PowerpackV2WidgetChangeDefinition
    The definition for a Change widget.
    CheckStatusDefinition PowerpackV2WidgetCheckStatusDefinition
    The definition for a Check Status widget.
    DistributionDefinition PowerpackV2WidgetDistributionDefinition
    The definition for a Distribution widget.
    EventStreamDefinition PowerpackV2WidgetEventStreamDefinition
    The definition for a Event Stream widget.
    EventTimelineDefinition PowerpackV2WidgetEventTimelineDefinition
    The definition for a Event Timeline widget.
    FreeTextDefinition PowerpackV2WidgetFreeTextDefinition
    The definition for a Free Text widget.
    FunnelDefinition PowerpackV2WidgetFunnelDefinition
    The definition for a Funnel widget.
    GeomapDefinition PowerpackV2WidgetGeomapDefinition
    The definition for a Geomap widget.
    GroupDefinition PowerpackV2WidgetGroupDefinition
    The definition for a Group widget.
    HeatmapDefinition PowerpackV2WidgetHeatmapDefinition
    The definition for a Heatmap widget.
    HostmapDefinition PowerpackV2WidgetHostmapDefinition
    The definition for a Hostmap widget.
    Id int
    The ID of the widget.
    IframeDefinition PowerpackV2WidgetIframeDefinition
    The definition for an Iframe widget.
    ImageDefinition PowerpackV2WidgetImageDefinition
    The definition for an Image widget
    ListStreamDefinition PowerpackV2WidgetListStreamDefinition
    The definition for a List Stream widget.
    LogStreamDefinition PowerpackV2WidgetLogStreamDefinition
    The definition for an Log Stream widget.
    ManageStatusDefinition PowerpackV2WidgetManageStatusDefinition
    The definition for an Manage Status widget.
    NoteDefinition PowerpackV2WidgetNoteDefinition
    The definition for a Note widget.
    PointPlotDefinition PowerpackV2WidgetPointPlotDefinition
    The definition for a Point Plot widget.
    QueryTableDefinition PowerpackV2WidgetQueryTableDefinition
    The definition for a Query Table widget.
    QueryValueDefinition PowerpackV2WidgetQueryValueDefinition
    The definition for a Query Value widget.
    RunWorkflowDefinition PowerpackV2WidgetRunWorkflowDefinition
    The definition for a Run Workflow widget.
    SankeyDefinition PowerpackV2WidgetSankeyDefinition
    The definition for a Sankey diagram widget.
    ScatterplotDefinition PowerpackV2WidgetScatterplotDefinition
    The definition for a Scatterplot widget.
    ServiceLevelObjectiveDefinition PowerpackV2WidgetServiceLevelObjectiveDefinition
    The definition for a Service Level Objective widget.
    ServicemapDefinition PowerpackV2WidgetServicemapDefinition
    The definition for a Service Map widget.
    SloListDefinition PowerpackV2WidgetSloListDefinition
    The definition for an SLO (Service Level Objective) List widget.
    SunburstDefinition PowerpackV2WidgetSunburstDefinition
    The definition for a Sunburst widget.
    TimeseriesDefinition PowerpackV2WidgetTimeseriesDefinition
    The definition for a Timeseries widget.
    ToplistDefinition PowerpackV2WidgetToplistDefinition
    The definition for a Toplist widget.
    TopologyMapDefinition PowerpackV2WidgetTopologyMapDefinition
    The definition for a Topology Map widget.
    TraceServiceDefinition PowerpackV2WidgetTraceServiceDefinition
    The definition for a Trace Service widget.
    TreemapDefinition PowerpackV2WidgetTreemapDefinition
    The definition for a Treemap widget.
    WidgetLayout PowerpackV2WidgetWidgetLayout
    The layout of the widget on a 'free' dashboard.
    WildcardDefinition PowerpackV2WidgetWildcardDefinition
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    alert_graph_definition object
    The definition for a Alert Graph widget.
    alert_value_definition object
    The definition for a Alert Value widget.
    bar_chart_definition object
    The definition for a Bar Chart widget.
    change_definition object
    The definition for a Change widget.
    check_status_definition object
    The definition for a Check Status widget.
    distribution_definition object
    The definition for a Distribution widget.
    event_stream_definition object
    The definition for a Event Stream widget.
    event_timeline_definition object
    The definition for a Event Timeline widget.
    free_text_definition object
    The definition for a Free Text widget.
    funnel_definition object
    The definition for a Funnel widget.
    geomap_definition object
    The definition for a Geomap widget.
    group_definition object
    The definition for a Group widget.
    heatmap_definition object
    The definition for a Heatmap widget.
    hostmap_definition object
    The definition for a Hostmap widget.
    id number
    The ID of the widget.
    iframe_definition object
    The definition for an Iframe widget.
    image_definition object
    The definition for an Image widget
    list_stream_definition object
    The definition for a List Stream widget.
    log_stream_definition object
    The definition for an Log Stream widget.
    manage_status_definition object
    The definition for an Manage Status widget.
    note_definition object
    The definition for a Note widget.
    point_plot_definition object
    The definition for a Point Plot widget.
    query_table_definition object
    The definition for a Query Table widget.
    query_value_definition object
    The definition for a Query Value widget.
    run_workflow_definition object
    The definition for a Run Workflow widget.
    sankey_definition object
    The definition for a Sankey diagram widget.
    scatterplot_definition object
    The definition for a Scatterplot widget.
    service_level_objective_definition object
    The definition for a Service Level Objective widget.
    servicemap_definition object
    The definition for a Service Map widget.
    slo_list_definition object
    The definition for an SLO (Service Level Objective) List widget.
    sunburst_definition object
    The definition for a Sunburst widget.
    timeseries_definition object
    The definition for a Timeseries widget.
    toplist_definition object
    The definition for a Toplist widget.
    topology_map_definition object
    The definition for a Topology Map widget.
    trace_service_definition object
    The definition for a Trace Service widget.
    treemap_definition object
    The definition for a Treemap widget.
    widget_layout object
    The layout of the widget on a 'free' dashboard.
    wildcard_definition object
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    alertGraphDefinition PowerpackV2WidgetAlertGraphDefinition
    The definition for a Alert Graph widget.
    alertValueDefinition PowerpackV2WidgetAlertValueDefinition
    The definition for a Alert Value widget.
    barChartDefinition PowerpackV2WidgetBarChartDefinition
    The definition for a Bar Chart widget.
    changeDefinition PowerpackV2WidgetChangeDefinition
    The definition for a Change widget.
    checkStatusDefinition PowerpackV2WidgetCheckStatusDefinition
    The definition for a Check Status widget.
    distributionDefinition PowerpackV2WidgetDistributionDefinition
    The definition for a Distribution widget.
    eventStreamDefinition PowerpackV2WidgetEventStreamDefinition
    The definition for a Event Stream widget.
    eventTimelineDefinition PowerpackV2WidgetEventTimelineDefinition
    The definition for a Event Timeline widget.
    freeTextDefinition PowerpackV2WidgetFreeTextDefinition
    The definition for a Free Text widget.
    funnelDefinition PowerpackV2WidgetFunnelDefinition
    The definition for a Funnel widget.
    geomapDefinition PowerpackV2WidgetGeomapDefinition
    The definition for a Geomap widget.
    groupDefinition PowerpackV2WidgetGroupDefinition
    The definition for a Group widget.
    heatmapDefinition PowerpackV2WidgetHeatmapDefinition
    The definition for a Heatmap widget.
    hostmapDefinition PowerpackV2WidgetHostmapDefinition
    The definition for a Hostmap widget.
    id Integer
    The ID of the widget.
    iframeDefinition PowerpackV2WidgetIframeDefinition
    The definition for an Iframe widget.
    imageDefinition PowerpackV2WidgetImageDefinition
    The definition for an Image widget
    listStreamDefinition PowerpackV2WidgetListStreamDefinition
    The definition for a List Stream widget.
    logStreamDefinition PowerpackV2WidgetLogStreamDefinition
    The definition for an Log Stream widget.
    manageStatusDefinition PowerpackV2WidgetManageStatusDefinition
    The definition for an Manage Status widget.
    noteDefinition PowerpackV2WidgetNoteDefinition
    The definition for a Note widget.
    pointPlotDefinition PowerpackV2WidgetPointPlotDefinition
    The definition for a Point Plot widget.
    queryTableDefinition PowerpackV2WidgetQueryTableDefinition
    The definition for a Query Table widget.
    queryValueDefinition PowerpackV2WidgetQueryValueDefinition
    The definition for a Query Value widget.
    runWorkflowDefinition PowerpackV2WidgetRunWorkflowDefinition
    The definition for a Run Workflow widget.
    sankeyDefinition PowerpackV2WidgetSankeyDefinition
    The definition for a Sankey diagram widget.
    scatterplotDefinition PowerpackV2WidgetScatterplotDefinition
    The definition for a Scatterplot widget.
    serviceLevelObjectiveDefinition PowerpackV2WidgetServiceLevelObjectiveDefinition
    The definition for a Service Level Objective widget.
    servicemapDefinition PowerpackV2WidgetServicemapDefinition
    The definition for a Service Map widget.
    sloListDefinition PowerpackV2WidgetSloListDefinition
    The definition for an SLO (Service Level Objective) List widget.
    sunburstDefinition PowerpackV2WidgetSunburstDefinition
    The definition for a Sunburst widget.
    timeseriesDefinition PowerpackV2WidgetTimeseriesDefinition
    The definition for a Timeseries widget.
    toplistDefinition PowerpackV2WidgetToplistDefinition
    The definition for a Toplist widget.
    topologyMapDefinition PowerpackV2WidgetTopologyMapDefinition
    The definition for a Topology Map widget.
    traceServiceDefinition PowerpackV2WidgetTraceServiceDefinition
    The definition for a Trace Service widget.
    treemapDefinition PowerpackV2WidgetTreemapDefinition
    The definition for a Treemap widget.
    widgetLayout PowerpackV2WidgetWidgetLayout
    The layout of the widget on a 'free' dashboard.
    wildcardDefinition PowerpackV2WidgetWildcardDefinition
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    alertGraphDefinition PowerpackV2WidgetAlertGraphDefinition
    The definition for a Alert Graph widget.
    alertValueDefinition PowerpackV2WidgetAlertValueDefinition
    The definition for a Alert Value widget.
    barChartDefinition PowerpackV2WidgetBarChartDefinition
    The definition for a Bar Chart widget.
    changeDefinition PowerpackV2WidgetChangeDefinition
    The definition for a Change widget.
    checkStatusDefinition PowerpackV2WidgetCheckStatusDefinition
    The definition for a Check Status widget.
    distributionDefinition PowerpackV2WidgetDistributionDefinition
    The definition for a Distribution widget.
    eventStreamDefinition PowerpackV2WidgetEventStreamDefinition
    The definition for a Event Stream widget.
    eventTimelineDefinition PowerpackV2WidgetEventTimelineDefinition
    The definition for a Event Timeline widget.
    freeTextDefinition PowerpackV2WidgetFreeTextDefinition
    The definition for a Free Text widget.
    funnelDefinition PowerpackV2WidgetFunnelDefinition
    The definition for a Funnel widget.
    geomapDefinition PowerpackV2WidgetGeomapDefinition
    The definition for a Geomap widget.
    groupDefinition PowerpackV2WidgetGroupDefinition
    The definition for a Group widget.
    heatmapDefinition PowerpackV2WidgetHeatmapDefinition
    The definition for a Heatmap widget.
    hostmapDefinition PowerpackV2WidgetHostmapDefinition
    The definition for a Hostmap widget.
    id number
    The ID of the widget.
    iframeDefinition PowerpackV2WidgetIframeDefinition
    The definition for an Iframe widget.
    imageDefinition PowerpackV2WidgetImageDefinition
    The definition for an Image widget
    listStreamDefinition PowerpackV2WidgetListStreamDefinition
    The definition for a List Stream widget.
    logStreamDefinition PowerpackV2WidgetLogStreamDefinition
    The definition for an Log Stream widget.
    manageStatusDefinition PowerpackV2WidgetManageStatusDefinition
    The definition for an Manage Status widget.
    noteDefinition PowerpackV2WidgetNoteDefinition
    The definition for a Note widget.
    pointPlotDefinition PowerpackV2WidgetPointPlotDefinition
    The definition for a Point Plot widget.
    queryTableDefinition PowerpackV2WidgetQueryTableDefinition
    The definition for a Query Table widget.
    queryValueDefinition PowerpackV2WidgetQueryValueDefinition
    The definition for a Query Value widget.
    runWorkflowDefinition PowerpackV2WidgetRunWorkflowDefinition
    The definition for a Run Workflow widget.
    sankeyDefinition PowerpackV2WidgetSankeyDefinition
    The definition for a Sankey diagram widget.
    scatterplotDefinition PowerpackV2WidgetScatterplotDefinition
    The definition for a Scatterplot widget.
    serviceLevelObjectiveDefinition PowerpackV2WidgetServiceLevelObjectiveDefinition
    The definition for a Service Level Objective widget.
    servicemapDefinition PowerpackV2WidgetServicemapDefinition
    The definition for a Service Map widget.
    sloListDefinition PowerpackV2WidgetSloListDefinition
    The definition for an SLO (Service Level Objective) List widget.
    sunburstDefinition PowerpackV2WidgetSunburstDefinition
    The definition for a Sunburst widget.
    timeseriesDefinition PowerpackV2WidgetTimeseriesDefinition
    The definition for a Timeseries widget.
    toplistDefinition PowerpackV2WidgetToplistDefinition
    The definition for a Toplist widget.
    topologyMapDefinition PowerpackV2WidgetTopologyMapDefinition
    The definition for a Topology Map widget.
    traceServiceDefinition PowerpackV2WidgetTraceServiceDefinition
    The definition for a Trace Service widget.
    treemapDefinition PowerpackV2WidgetTreemapDefinition
    The definition for a Treemap widget.
    widgetLayout PowerpackV2WidgetWidgetLayout
    The layout of the widget on a 'free' dashboard.
    wildcardDefinition PowerpackV2WidgetWildcardDefinition
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    alert_graph_definition PowerpackV2WidgetAlertGraphDefinition
    The definition for a Alert Graph widget.
    alert_value_definition PowerpackV2WidgetAlertValueDefinition
    The definition for a Alert Value widget.
    bar_chart_definition PowerpackV2WidgetBarChartDefinition
    The definition for a Bar Chart widget.
    change_definition PowerpackV2WidgetChangeDefinition
    The definition for a Change widget.
    check_status_definition PowerpackV2WidgetCheckStatusDefinition
    The definition for a Check Status widget.
    distribution_definition PowerpackV2WidgetDistributionDefinition
    The definition for a Distribution widget.
    event_stream_definition PowerpackV2WidgetEventStreamDefinition
    The definition for a Event Stream widget.
    event_timeline_definition PowerpackV2WidgetEventTimelineDefinition
    The definition for a Event Timeline widget.
    free_text_definition PowerpackV2WidgetFreeTextDefinition
    The definition for a Free Text widget.
    funnel_definition PowerpackV2WidgetFunnelDefinition
    The definition for a Funnel widget.
    geomap_definition PowerpackV2WidgetGeomapDefinition
    The definition for a Geomap widget.
    group_definition PowerpackV2WidgetGroupDefinition
    The definition for a Group widget.
    heatmap_definition PowerpackV2WidgetHeatmapDefinition
    The definition for a Heatmap widget.
    hostmap_definition PowerpackV2WidgetHostmapDefinition
    The definition for a Hostmap widget.
    id int
    The ID of the widget.
    iframe_definition PowerpackV2WidgetIframeDefinition
    The definition for an Iframe widget.
    image_definition PowerpackV2WidgetImageDefinition
    The definition for an Image widget
    list_stream_definition PowerpackV2WidgetListStreamDefinition
    The definition for a List Stream widget.
    log_stream_definition PowerpackV2WidgetLogStreamDefinition
    The definition for an Log Stream widget.
    manage_status_definition PowerpackV2WidgetManageStatusDefinition
    The definition for an Manage Status widget.
    note_definition PowerpackV2WidgetNoteDefinition
    The definition for a Note widget.
    point_plot_definition PowerpackV2WidgetPointPlotDefinition
    The definition for a Point Plot widget.
    query_table_definition PowerpackV2WidgetQueryTableDefinition
    The definition for a Query Table widget.
    query_value_definition PowerpackV2WidgetQueryValueDefinition
    The definition for a Query Value widget.
    run_workflow_definition PowerpackV2WidgetRunWorkflowDefinition
    The definition for a Run Workflow widget.
    sankey_definition PowerpackV2WidgetSankeyDefinition
    The definition for a Sankey diagram widget.
    scatterplot_definition PowerpackV2WidgetScatterplotDefinition
    The definition for a Scatterplot widget.
    service_level_objective_definition PowerpackV2WidgetServiceLevelObjectiveDefinition
    The definition for a Service Level Objective widget.
    servicemap_definition PowerpackV2WidgetServicemapDefinition
    The definition for a Service Map widget.
    slo_list_definition PowerpackV2WidgetSloListDefinition
    The definition for an SLO (Service Level Objective) List widget.
    sunburst_definition PowerpackV2WidgetSunburstDefinition
    The definition for a Sunburst widget.
    timeseries_definition PowerpackV2WidgetTimeseriesDefinition
    The definition for a Timeseries widget.
    toplist_definition PowerpackV2WidgetToplistDefinition
    The definition for a Toplist widget.
    topology_map_definition PowerpackV2WidgetTopologyMapDefinition
    The definition for a Topology Map widget.
    trace_service_definition PowerpackV2WidgetTraceServiceDefinition
    The definition for a Trace Service widget.
    treemap_definition PowerpackV2WidgetTreemapDefinition
    The definition for a Treemap widget.
    widget_layout PowerpackV2WidgetWidgetLayout
    The layout of the widget on a 'free' dashboard.
    wildcard_definition PowerpackV2WidgetWildcardDefinition
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    alertGraphDefinition Property Map
    The definition for a Alert Graph widget.
    alertValueDefinition Property Map
    The definition for a Alert Value widget.
    barChartDefinition Property Map
    The definition for a Bar Chart widget.
    changeDefinition Property Map
    The definition for a Change widget.
    checkStatusDefinition Property Map
    The definition for a Check Status widget.
    distributionDefinition Property Map
    The definition for a Distribution widget.
    eventStreamDefinition Property Map
    The definition for a Event Stream widget.
    eventTimelineDefinition Property Map
    The definition for a Event Timeline widget.
    freeTextDefinition Property Map
    The definition for a Free Text widget.
    funnelDefinition Property Map
    The definition for a Funnel widget.
    geomapDefinition Property Map
    The definition for a Geomap widget.
    groupDefinition Property Map
    The definition for a Group widget.
    heatmapDefinition Property Map
    The definition for a Heatmap widget.
    hostmapDefinition Property Map
    The definition for a Hostmap widget.
    id Number
    The ID of the widget.
    iframeDefinition Property Map
    The definition for an Iframe widget.
    imageDefinition Property Map
    The definition for an Image widget
    listStreamDefinition Property Map
    The definition for a List Stream widget.
    logStreamDefinition Property Map
    The definition for an Log Stream widget.
    manageStatusDefinition Property Map
    The definition for an Manage Status widget.
    noteDefinition Property Map
    The definition for a Note widget.
    pointPlotDefinition Property Map
    The definition for a Point Plot widget.
    queryTableDefinition Property Map
    The definition for a Query Table widget.
    queryValueDefinition Property Map
    The definition for a Query Value widget.
    runWorkflowDefinition Property Map
    The definition for a Run Workflow widget.
    sankeyDefinition Property Map
    The definition for a Sankey diagram widget.
    scatterplotDefinition Property Map
    The definition for a Scatterplot widget.
    serviceLevelObjectiveDefinition Property Map
    The definition for a Service Level Objective widget.
    servicemapDefinition Property Map
    The definition for a Service Map widget.
    sloListDefinition Property Map
    The definition for an SLO (Service Level Objective) List widget.
    sunburstDefinition Property Map
    The definition for a Sunburst widget.
    timeseriesDefinition Property Map
    The definition for a Timeseries widget.
    toplistDefinition Property Map
    The definition for a Toplist widget.
    topologyMapDefinition Property Map
    The definition for a Topology Map widget.
    traceServiceDefinition Property Map
    The definition for a Trace Service widget.
    treemapDefinition Property Map
    The definition for a Treemap widget.
    widgetLayout Property Map
    The layout of the widget on a 'free' dashboard.
    wildcardDefinition Property Map
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.

    PowerpackV2WidgetAlertGraphDefinition, PowerpackV2WidgetAlertGraphDefinitionArgs

    AlertId string
    The ID of the monitor used by the widget.
    VizType string
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetAlertGraphDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    AlertId string
    The ID of the monitor used by the widget.
    VizType string
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetAlertGraphDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    alert_id string
    The ID of the monitor used by the widget.
    viz_type string
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    alertId String
    The ID of the monitor used by the widget.
    vizType String
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetAlertGraphDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    alertId string
    The ID of the monitor used by the widget.
    vizType string
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetAlertGraphDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    alert_id str
    The ID of the monitor used by the widget.
    viz_type str
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetAlertGraphDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    alertId String
    The ID of the monitor used by the widget.
    vizType String
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetAlertGraphDefinitionTime, PowerpackV2WidgetAlertGraphDefinitionTimeArgs

    Fixed PowerpackV2WidgetAlertGraphDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetAlertGraphDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetAlertGraphDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetAlertGraphDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetAlertGraphDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetAlertGraphDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetAlertGraphDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetAlertGraphDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetAlertGraphDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetAlertGraphDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetAlertGraphDefinitionTimeFixed, PowerpackV2WidgetAlertGraphDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetAlertGraphDefinitionTimeLive, PowerpackV2WidgetAlertGraphDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetAlertValueDefinition, PowerpackV2WidgetAlertValueDefinitionArgs

    AlertId string
    The ID of the monitor used by the widget.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Precision int
    The precision to use when displaying the value. Use * for maximum precision.
    TextAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    Time PowerpackV2WidgetAlertValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Unit string
    The unit for the value displayed in the widget.
    AlertId string
    The ID of the monitor used by the widget.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Precision int
    The precision to use when displaying the value. Use * for maximum precision.
    TextAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    Time PowerpackV2WidgetAlertValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Unit string
    The unit for the value displayed in the widget.
    alert_id string
    The ID of the monitor used by the widget.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision number
    The precision to use when displaying the value. Use * for maximum precision.
    text_align string
    The alignment of the text in the widget. Valid values are center, left, right.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    unit string
    The unit for the value displayed in the widget.
    alertId String
    The ID of the monitor used by the widget.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision Integer
    The precision to use when displaying the value. Use * for maximum precision.
    textAlign String
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetAlertValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    unit String
    The unit for the value displayed in the widget.
    alertId string
    The ID of the monitor used by the widget.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision number
    The precision to use when displaying the value. Use * for maximum precision.
    textAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetAlertValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    unit string
    The unit for the value displayed in the widget.
    alert_id str
    The ID of the monitor used by the widget.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision int
    The precision to use when displaying the value. Use * for maximum precision.
    text_align str
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetAlertValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    unit str
    The unit for the value displayed in the widget.
    alertId String
    The ID of the monitor used by the widget.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision Number
    The precision to use when displaying the value. Use * for maximum precision.
    textAlign String
    The alignment of the text in the widget. Valid values are center, left, right.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    unit String
    The unit for the value displayed in the widget.

    PowerpackV2WidgetAlertValueDefinitionTime, PowerpackV2WidgetAlertValueDefinitionTimeArgs

    Fixed PowerpackV2WidgetAlertValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetAlertValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetAlertValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetAlertValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetAlertValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetAlertValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetAlertValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetAlertValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetAlertValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetAlertValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetAlertValueDefinitionTimeFixed, PowerpackV2WidgetAlertValueDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetAlertValueDefinitionTimeLive, PowerpackV2WidgetAlertValueDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetBarChartDefinition, PowerpackV2WidgetBarChartDefinitionArgs

    CustomLinks List<PowerpackV2WidgetBarChartDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Request PowerpackV2WidgetBarChartDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    Style PowerpackV2WidgetBarChartDefinitionStyle
    Style customization for the bar chart widget.
    Time PowerpackV2WidgetBarChartDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    CustomLinks []PowerpackV2WidgetBarChartDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Request PowerpackV2WidgetBarChartDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    Style PowerpackV2WidgetBarChartDefinitionStyle
    Style customization for the bar chart widget.
    Time PowerpackV2WidgetBarChartDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request object
    A nested block describing the request to use when displaying the widget.
    style object
    Style customization for the bar chart widget.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    customLinks List<PowerpackV2WidgetBarChartDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetBarChartDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    style PowerpackV2WidgetBarChartDefinitionStyle
    Style customization for the bar chart widget.
    time PowerpackV2WidgetBarChartDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    customLinks PowerpackV2WidgetBarChartDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetBarChartDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    style PowerpackV2WidgetBarChartDefinitionStyle
    Style customization for the bar chart widget.
    time PowerpackV2WidgetBarChartDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    custom_links Sequence[PowerpackV2WidgetBarChartDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetBarChartDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    style PowerpackV2WidgetBarChartDefinitionStyle
    Style customization for the bar chart widget.
    time PowerpackV2WidgetBarChartDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request Property Map
    A nested block describing the request to use when displaying the widget.
    style Property Map
    Style customization for the bar chart widget.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetBarChartDefinitionRequest, PowerpackV2WidgetBarChartDefinitionRequestArgs

    ApmQuery PowerpackV2WidgetBarChartDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ConditionalFormats List<PowerpackV2WidgetBarChartDefinitionRequestConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    Formulas List<PowerpackV2WidgetBarChartDefinitionRequestFormula>
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetBarChartDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetBarChartDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetBarChartDefinitionRequestQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetBarChartDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Sort PowerpackV2WidgetBarChartDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    Style PowerpackV2WidgetBarChartDefinitionRequestStyle
    Define request for the widget's style.
    ApmQuery PowerpackV2WidgetBarChartDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ConditionalFormats []PowerpackV2WidgetBarChartDefinitionRequestConditionalFormat
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    Formulas []PowerpackV2WidgetBarChartDefinitionRequestFormula
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetBarChartDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetBarChartDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetBarChartDefinitionRequestQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetBarChartDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Sort PowerpackV2WidgetBarChartDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    Style PowerpackV2WidgetBarChartDefinitionRequestStyle
    Define request for the widget's style.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    formulas list(object)
    A list of formulas to use in the widget.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort object
    The controls for sorting the widget. Only applicable for formula-style requests.
    style object
    Define request for the widget's style.
    apmQuery PowerpackV2WidgetBarChartDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditionalFormats List<PowerpackV2WidgetBarChartDefinitionRequestConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    formulas List<PowerpackV2WidgetBarChartDefinitionRequestFormula>
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetBarChartDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetBarChartDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetBarChartDefinitionRequestQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetBarChartDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort PowerpackV2WidgetBarChartDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    style PowerpackV2WidgetBarChartDefinitionRequestStyle
    Define request for the widget's style.
    apmQuery PowerpackV2WidgetBarChartDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditionalFormats PowerpackV2WidgetBarChartDefinitionRequestConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    formulas PowerpackV2WidgetBarChartDefinitionRequestFormula[]
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetBarChartDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetBarChartDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetBarChartDefinitionRequestQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetBarChartDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort PowerpackV2WidgetBarChartDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    style PowerpackV2WidgetBarChartDefinitionRequestStyle
    Define request for the widget's style.
    apm_query PowerpackV2WidgetBarChartDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditional_formats Sequence[PowerpackV2WidgetBarChartDefinitionRequestConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    formulas Sequence[PowerpackV2WidgetBarChartDefinitionRequestFormula]
    A list of formulas to use in the widget.
    log_query PowerpackV2WidgetBarChartDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetBarChartDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetBarChartDefinitionRequestQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetBarChartDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetBarChartDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort PowerpackV2WidgetBarChartDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    style PowerpackV2WidgetBarChartDefinitionRequestStyle
    Define request for the widget's style.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    formulas List<Property Map>
    A list of formulas to use in the widget.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort Property Map
    The controls for sorting the widget. Only applicable for formula-style requests.
    style Property Map
    Define request for the widget's style.

    PowerpackV2WidgetBarChartDefinitionRequestApmQuery, PowerpackV2WidgetBarChartDefinitionRequestApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetBarChartDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetBarChartDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetBarChartDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetBarChartDefinitionRequestApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetBarChartDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetBarChartDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetBarChartDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetBarChartDefinitionRequestApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetBarChartDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetBarChartDefinitionRequestApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetBarChartDefinitionRequestApmQueryComputeQuery, PowerpackV2WidgetBarChartDefinitionRequestApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBy, PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBySortQuery, PowerpackV2WidgetBarChartDefinitionRequestApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetBarChartDefinitionRequestApmQueryMultiCompute, PowerpackV2WidgetBarChartDefinitionRequestApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetBarChartDefinitionRequestConditionalFormat, PowerpackV2WidgetBarChartDefinitionRequestConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetBarChartDefinitionRequestFormula, PowerpackV2WidgetBarChartDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetBarChartDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetBarChartDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetBarChartDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetBarChartDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetBarChartDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetBarChartDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetBarChartDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetBarChartDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetBarChartDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetBarChartDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetBarChartDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetBarChartDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetBarChartDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetBarChartDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetBarChartDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetBarChartDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetBarChartDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetBarChartDefinitionRequestFormulaLimit, PowerpackV2WidgetBarChartDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetBarChartDefinitionRequestFormulaStyle, PowerpackV2WidgetBarChartDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetBarChartDefinitionRequestLogQuery, PowerpackV2WidgetBarChartDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetBarChartDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetBarChartDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetBarChartDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetBarChartDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetBarChartDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetBarChartDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetBarChartDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetBarChartDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetBarChartDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetBarChartDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetBarChartDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetBarChartDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetBarChartDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetBarChartDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetBarChartDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetBarChartDefinitionRequestProcessQuery, PowerpackV2WidgetBarChartDefinitionRequestProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetBarChartDefinitionRequestQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetBarChartDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetBarChartDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetBarChartDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetBarChartDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetBarChartDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetBarChartDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetBarChartDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetBarChartDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetBarChartDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetBarChartDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetBarChartDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetBarChartDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetBarChartDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetBarChartDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetBarChartDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetBarChartDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetBarChartDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetBarChartDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetBarChartDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetBarChartDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetBarChartDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetBarChartDefinitionRequestQueryMetricQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetBarChartDefinitionRequestQueryProcessQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetBarChartDefinitionRequestQuerySloQuery, PowerpackV2WidgetBarChartDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetBarChartDefinitionRequestRumQuery, PowerpackV2WidgetBarChartDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetBarChartDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetBarChartDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetBarChartDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetBarChartDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetBarChartDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetBarChartDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetBarChartDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetBarChartDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetBarChartDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetBarChartDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetBarChartDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetBarChartDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetBarChartDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetBarChartDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetBarChartDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetBarChartDefinitionRequestSecurityQuery, PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryComputeQuery, PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBy, PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery, PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryMultiCompute, PowerpackV2WidgetBarChartDefinitionRequestSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetBarChartDefinitionRequestSort, PowerpackV2WidgetBarChartDefinitionRequestSortArgs

    Count int
    The number of items to limit the widget to.
    OrderBies List<PowerpackV2WidgetBarChartDefinitionRequestSortOrderBy>
    The list of items to sort the widget by.
    Count int
    The number of items to limit the widget to.
    OrderBies []PowerpackV2WidgetBarChartDefinitionRequestSortOrderBy
    The list of items to sort the widget by.
    count number
    The number of items to limit the widget to.
    order_bies list(object)
    The list of items to sort the widget by.
    count Integer
    The number of items to limit the widget to.
    orderBies List<PowerpackV2WidgetBarChartDefinitionRequestSortOrderBy>
    The list of items to sort the widget by.
    count number
    The number of items to limit the widget to.
    orderBies PowerpackV2WidgetBarChartDefinitionRequestSortOrderBy[]
    The list of items to sort the widget by.
    count int
    The number of items to limit the widget to.
    order_bies Sequence[PowerpackV2WidgetBarChartDefinitionRequestSortOrderBy]
    The list of items to sort the widget by.
    count Number
    The number of items to limit the widget to.
    orderBies List<Property Map>
    The list of items to sort the widget by.

    PowerpackV2WidgetBarChartDefinitionRequestSortOrderBy, PowerpackV2WidgetBarChartDefinitionRequestSortOrderByArgs

    formula_sort object
    Sort by a formula value.
    group_sort object
    Sort by a group (tag) value.
    formulaSort Property Map
    Sort by a formula value.
    groupSort Property Map
    Sort by a group (tag) value.

    PowerpackV2WidgetBarChartDefinitionRequestSortOrderByFormulaSort, PowerpackV2WidgetBarChartDefinitionRequestSortOrderByFormulaSortArgs

    Index int
    The index of the formula to sort by.
    Order string
    Widget sorting direction. Valid values are asc, desc.
    Index int
    The index of the formula to sort by.
    Order string
    Widget sorting direction. Valid values are asc, desc.
    index number
    The index of the formula to sort by.
    order string
    Widget sorting direction. Valid values are asc, desc.
    index Integer
    The index of the formula to sort by.
    order String
    Widget sorting direction. Valid values are asc, desc.
    index number
    The index of the formula to sort by.
    order string
    Widget sorting direction. Valid values are asc, desc.
    index int
    The index of the formula to sort by.
    order str
    Widget sorting direction. Valid values are asc, desc.
    index Number
    The index of the formula to sort by.
    order String
    Widget sorting direction. Valid values are asc, desc.

    PowerpackV2WidgetBarChartDefinitionRequestSortOrderByGroupSort, PowerpackV2WidgetBarChartDefinitionRequestSortOrderByGroupSortArgs

    Name string
    The name of the group tag to sort by.
    Order string
    Widget sorting direction. Valid values are asc, desc.
    Name string
    The name of the group tag to sort by.
    Order string
    Widget sorting direction. Valid values are asc, desc.
    name string
    The name of the group tag to sort by.
    order string
    Widget sorting direction. Valid values are asc, desc.
    name String
    The name of the group tag to sort by.
    order String
    Widget sorting direction. Valid values are asc, desc.
    name string
    The name of the group tag to sort by.
    order string
    Widget sorting direction. Valid values are asc, desc.
    name str
    The name of the group tag to sort by.
    order str
    Widget sorting direction. Valid values are asc, desc.
    name String
    The name of the group tag to sort by.
    order String
    Widget sorting direction. Valid values are asc, desc.

    PowerpackV2WidgetBarChartDefinitionRequestStyle, PowerpackV2WidgetBarChartDefinitionRequestStyleArgs

    OrderBy string
    How to order series. Valid values are tags, values.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    OrderBy string
    How to order series. Valid values are tags, values.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    order_by string
    How to order series. Valid values are tags, values.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy String
    How to order series. Valid values are tags, values.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy string
    How to order series. Valid values are tags, values.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    order_by str
    How to order series. Valid values are tags, values.
    palette str
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy String
    How to order series. Valid values are tags, values.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.

    PowerpackV2WidgetBarChartDefinitionStyle, PowerpackV2WidgetBarChartDefinitionStyleArgs

    Display PowerpackV2WidgetBarChartDefinitionStyleDisplay
    Bar chart display options.
    Palette string
    Color palette for the bar chart.
    Scaling string
    Scaling definition for the bar chart. Valid values are absolute, relative.
    Display PowerpackV2WidgetBarChartDefinitionStyleDisplay
    Bar chart display options.
    Palette string
    Color palette for the bar chart.
    Scaling string
    Scaling definition for the bar chart. Valid values are absolute, relative.
    display object
    Bar chart display options.
    palette string
    Color palette for the bar chart.
    scaling string
    Scaling definition for the bar chart. Valid values are absolute, relative.
    display PowerpackV2WidgetBarChartDefinitionStyleDisplay
    Bar chart display options.
    palette String
    Color palette for the bar chart.
    scaling String
    Scaling definition for the bar chart. Valid values are absolute, relative.
    display PowerpackV2WidgetBarChartDefinitionStyleDisplay
    Bar chart display options.
    palette string
    Color palette for the bar chart.
    scaling string
    Scaling definition for the bar chart. Valid values are absolute, relative.
    display PowerpackV2WidgetBarChartDefinitionStyleDisplay
    Bar chart display options.
    palette str
    Color palette for the bar chart.
    scaling str
    Scaling definition for the bar chart. Valid values are absolute, relative.
    display Property Map
    Bar chart display options.
    palette String
    Color palette for the bar chart.
    scaling String
    Scaling definition for the bar chart. Valid values are absolute, relative.

    PowerpackV2WidgetBarChartDefinitionStyleDisplay, PowerpackV2WidgetBarChartDefinitionStyleDisplayArgs

    flat object
    Flat display mode with no stacking.
    stacked object
    Stacked display mode.
    flat Property Map
    Flat display mode with no stacking.
    stacked Property Map
    Stacked display mode.

    PowerpackV2WidgetBarChartDefinitionStyleDisplayStacked, PowerpackV2WidgetBarChartDefinitionStyleDisplayStackedArgs

    Legend string
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    Legend string
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    legend string
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    legend String
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    legend string
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    legend str
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    legend String
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.

    PowerpackV2WidgetBarChartDefinitionTime, PowerpackV2WidgetBarChartDefinitionTimeArgs

    Fixed PowerpackV2WidgetBarChartDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetBarChartDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetBarChartDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetBarChartDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetBarChartDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetBarChartDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetBarChartDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetBarChartDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetBarChartDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetBarChartDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetBarChartDefinitionTimeFixed, PowerpackV2WidgetBarChartDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetBarChartDefinitionTimeLive, PowerpackV2WidgetBarChartDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetChangeDefinition, PowerpackV2WidgetChangeDefinitionArgs

    CustomLinks List<PowerpackV2WidgetChangeDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests List<PowerpackV2WidgetChangeDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    Time PowerpackV2WidgetChangeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    CustomLinks []PowerpackV2WidgetChangeDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests []PowerpackV2WidgetChangeDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    Time PowerpackV2WidgetChangeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests list(object)
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    customLinks List<PowerpackV2WidgetChangeDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<PowerpackV2WidgetChangeDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    time PowerpackV2WidgetChangeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    customLinks PowerpackV2WidgetChangeDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests PowerpackV2WidgetChangeDefinitionRequest[]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    time PowerpackV2WidgetChangeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    custom_links Sequence[PowerpackV2WidgetChangeDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests Sequence[PowerpackV2WidgetChangeDefinitionRequest]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    time PowerpackV2WidgetChangeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetChangeDefinitionRequest, PowerpackV2WidgetChangeDefinitionRequestArgs

    ApmQuery PowerpackV2WidgetChangeDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ChangeType string
    Whether to show absolute or relative change. Valid values are absolute, relative.
    CompareTo string
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    Formulas List<PowerpackV2WidgetChangeDefinitionRequestFormula>
    A list of formulas to use in the widget.
    IncreaseGood bool
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    LogQuery PowerpackV2WidgetChangeDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    OrderBy string
    What to order by. Valid values are change, name, present, past.
    OrderDir string
    Widget sorting method. Valid values are asc, desc.
    ProcessQuery PowerpackV2WidgetChangeDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetChangeDefinitionRequestQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetChangeDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ShowPresent bool
    If set to true, displays the current value.
    ApmQuery PowerpackV2WidgetChangeDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ChangeType string
    Whether to show absolute or relative change. Valid values are absolute, relative.
    CompareTo string
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    Formulas []PowerpackV2WidgetChangeDefinitionRequestFormula
    A list of formulas to use in the widget.
    IncreaseGood bool
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    LogQuery PowerpackV2WidgetChangeDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    OrderBy string
    What to order by. Valid values are change, name, present, past.
    OrderDir string
    Widget sorting method. Valid values are asc, desc.
    ProcessQuery PowerpackV2WidgetChangeDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetChangeDefinitionRequestQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetChangeDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ShowPresent bool
    If set to true, displays the current value.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    change_type string
    Whether to show absolute or relative change. Valid values are absolute, relative.
    compare_to string
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    formulas list(object)
    A list of formulas to use in the widget.
    increase_good bool
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    order_by string
    What to order by. Valid values are change, name, present, past.
    order_dir string
    Widget sorting method. Valid values are asc, desc.
    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    show_present bool
    If set to true, displays the current value.
    apmQuery PowerpackV2WidgetChangeDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    changeType String
    Whether to show absolute or relative change. Valid values are absolute, relative.
    compareTo String
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    formulas List<PowerpackV2WidgetChangeDefinitionRequestFormula>
    A list of formulas to use in the widget.
    increaseGood Boolean
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    logQuery PowerpackV2WidgetChangeDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    orderBy String
    What to order by. Valid values are change, name, present, past.
    orderDir String
    Widget sorting method. Valid values are asc, desc.
    processQuery PowerpackV2WidgetChangeDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetChangeDefinitionRequestQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetChangeDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    showPresent Boolean
    If set to true, displays the current value.
    apmQuery PowerpackV2WidgetChangeDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    changeType string
    Whether to show absolute or relative change. Valid values are absolute, relative.
    compareTo string
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    formulas PowerpackV2WidgetChangeDefinitionRequestFormula[]
    A list of formulas to use in the widget.
    increaseGood boolean
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    logQuery PowerpackV2WidgetChangeDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    orderBy string
    What to order by. Valid values are change, name, present, past.
    orderDir string
    Widget sorting method. Valid values are asc, desc.
    processQuery PowerpackV2WidgetChangeDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetChangeDefinitionRequestQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetChangeDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    showPresent boolean
    If set to true, displays the current value.
    apm_query PowerpackV2WidgetChangeDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    change_type str
    Whether to show absolute or relative change. Valid values are absolute, relative.
    compare_to str
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    formulas Sequence[PowerpackV2WidgetChangeDefinitionRequestFormula]
    A list of formulas to use in the widget.
    increase_good bool
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    log_query PowerpackV2WidgetChangeDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    order_by str
    What to order by. Valid values are change, name, present, past.
    order_dir str
    Widget sorting method. Valid values are asc, desc.
    process_query PowerpackV2WidgetChangeDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetChangeDefinitionRequestQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetChangeDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetChangeDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    show_present bool
    If set to true, displays the current value.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    changeType String
    Whether to show absolute or relative change. Valid values are absolute, relative.
    compareTo String
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    formulas List<Property Map>
    A list of formulas to use in the widget.
    increaseGood Boolean
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    orderBy String
    What to order by. Valid values are change, name, present, past.
    orderDir String
    Widget sorting method. Valid values are asc, desc.
    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    showPresent Boolean
    If set to true, displays the current value.

    PowerpackV2WidgetChangeDefinitionRequestApmQuery, PowerpackV2WidgetChangeDefinitionRequestApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetChangeDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetChangeDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetChangeDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetChangeDefinitionRequestApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetChangeDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetChangeDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetChangeDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetChangeDefinitionRequestApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetChangeDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetChangeDefinitionRequestApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetChangeDefinitionRequestApmQueryComputeQuery, PowerpackV2WidgetChangeDefinitionRequestApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBy, PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBySortQuery, PowerpackV2WidgetChangeDefinitionRequestApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetChangeDefinitionRequestApmQueryMultiCompute, PowerpackV2WidgetChangeDefinitionRequestApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetChangeDefinitionRequestFormula, PowerpackV2WidgetChangeDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetChangeDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetChangeDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetChangeDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetChangeDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetChangeDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetChangeDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetChangeDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetChangeDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetChangeDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetChangeDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetChangeDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetChangeDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetChangeDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetChangeDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetChangeDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetChangeDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetChangeDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetChangeDefinitionRequestFormulaLimit, PowerpackV2WidgetChangeDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetChangeDefinitionRequestFormulaStyle, PowerpackV2WidgetChangeDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetChangeDefinitionRequestLogQuery, PowerpackV2WidgetChangeDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetChangeDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetChangeDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetChangeDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetChangeDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetChangeDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetChangeDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetChangeDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetChangeDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetChangeDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetChangeDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetChangeDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetChangeDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetChangeDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetChangeDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetChangeDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetChangeDefinitionRequestProcessQuery, PowerpackV2WidgetChangeDefinitionRequestProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetChangeDefinitionRequestQuery, PowerpackV2WidgetChangeDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetChangeDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetChangeDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetChangeDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetChangeDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetChangeDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetChangeDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetChangeDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetChangeDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetChangeDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetChangeDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetChangeDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetChangeDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetChangeDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetChangeDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetChangeDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetChangeDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetChangeDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetChangeDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetChangeDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetChangeDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetChangeDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetChangeDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetChangeDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetChangeDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetChangeDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetChangeDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetChangeDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetChangeDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetChangeDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetChangeDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetChangeDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetChangeDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetChangeDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetChangeDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetChangeDefinitionRequestQueryEventQuery, PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetChangeDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetChangeDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetChangeDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetChangeDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetChangeDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetChangeDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetChangeDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetChangeDefinitionRequestQueryMetricQuery, PowerpackV2WidgetChangeDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetChangeDefinitionRequestQueryProcessQuery, PowerpackV2WidgetChangeDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetChangeDefinitionRequestQuerySloQuery, PowerpackV2WidgetChangeDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetChangeDefinitionRequestRumQuery, PowerpackV2WidgetChangeDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetChangeDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetChangeDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetChangeDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetChangeDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetChangeDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetChangeDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetChangeDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetChangeDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetChangeDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetChangeDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetChangeDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetChangeDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetChangeDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetChangeDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetChangeDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetChangeDefinitionRequestSecurityQuery, PowerpackV2WidgetChangeDefinitionRequestSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetChangeDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetChangeDefinitionRequestSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetChangeDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetChangeDefinitionRequestSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetChangeDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetChangeDefinitionRequestSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetChangeDefinitionRequestSecurityQueryComputeQuery, PowerpackV2WidgetChangeDefinitionRequestSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBy, PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery, PowerpackV2WidgetChangeDefinitionRequestSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetChangeDefinitionRequestSecurityQueryMultiCompute, PowerpackV2WidgetChangeDefinitionRequestSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetChangeDefinitionTime, PowerpackV2WidgetChangeDefinitionTimeArgs

    Fixed PowerpackV2WidgetChangeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetChangeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetChangeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetChangeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetChangeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetChangeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetChangeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetChangeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetChangeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetChangeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetChangeDefinitionTimeFixed, PowerpackV2WidgetChangeDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetChangeDefinitionTimeLive, PowerpackV2WidgetChangeDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetCheckStatusDefinition, PowerpackV2WidgetCheckStatusDefinitionArgs

    Check string
    Name of the check to use in the widget.
    Grouping string
    The kind of grouping to use. Valid values are check, cluster.
    Description string
    The description of the widget.
    Group string
    Group reporting a single check.
    GroupBies List<string>
    When grouping = "cluster", indicates a list of tags to use for grouping.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Tags List<string>
    A list of tags used to filter the groups reporting a cluster check.
    Time PowerpackV2WidgetCheckStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Check string
    Name of the check to use in the widget.
    Grouping string
    The kind of grouping to use. Valid values are check, cluster.
    Description string
    The description of the widget.
    Group string
    Group reporting a single check.
    GroupBies []string
    When grouping = "cluster", indicates a list of tags to use for grouping.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Tags []string
    A list of tags used to filter the groups reporting a cluster check.
    Time PowerpackV2WidgetCheckStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    check string
    Name of the check to use in the widget.
    grouping string
    The kind of grouping to use. Valid values are check, cluster.
    description string
    The description of the widget.
    group string
    Group reporting a single check.
    group_bies list(string)
    When grouping = "cluster", indicates a list of tags to use for grouping.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags list(string)
    A list of tags used to filter the groups reporting a cluster check.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    check String
    Name of the check to use in the widget.
    grouping String
    The kind of grouping to use. Valid values are check, cluster.
    description String
    The description of the widget.
    group String
    Group reporting a single check.
    groupBies List<String>
    When grouping = "cluster", indicates a list of tags to use for grouping.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags List<String>
    A list of tags used to filter the groups reporting a cluster check.
    time PowerpackV2WidgetCheckStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    check string
    Name of the check to use in the widget.
    grouping string
    The kind of grouping to use. Valid values are check, cluster.
    description string
    The description of the widget.
    group string
    Group reporting a single check.
    groupBies string[]
    When grouping = "cluster", indicates a list of tags to use for grouping.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags string[]
    A list of tags used to filter the groups reporting a cluster check.
    time PowerpackV2WidgetCheckStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    check str
    Name of the check to use in the widget.
    grouping str
    The kind of grouping to use. Valid values are check, cluster.
    description str
    The description of the widget.
    group str
    Group reporting a single check.
    group_bies Sequence[str]
    When grouping = "cluster", indicates a list of tags to use for grouping.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags Sequence[str]
    A list of tags used to filter the groups reporting a cluster check.
    time PowerpackV2WidgetCheckStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    check String
    Name of the check to use in the widget.
    grouping String
    The kind of grouping to use. Valid values are check, cluster.
    description String
    The description of the widget.
    group String
    Group reporting a single check.
    groupBies List<String>
    When grouping = "cluster", indicates a list of tags to use for grouping.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags List<String>
    A list of tags used to filter the groups reporting a cluster check.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetCheckStatusDefinitionTime, PowerpackV2WidgetCheckStatusDefinitionTimeArgs

    Fixed PowerpackV2WidgetCheckStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetCheckStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetCheckStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetCheckStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetCheckStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetCheckStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetCheckStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetCheckStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetCheckStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetCheckStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetCheckStatusDefinitionTimeFixed, PowerpackV2WidgetCheckStatusDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetCheckStatusDefinitionTimeLive, PowerpackV2WidgetCheckStatusDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetDistributionDefinition, PowerpackV2WidgetDistributionDefinitionArgs

    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LegendSize string
    The size of the legend displayed in the widget.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Markers List<PowerpackV2WidgetDistributionDefinitionMarker>
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    Requests List<PowerpackV2WidgetDistributionDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    ShowLegend bool
    Whether or not to show the legend on this widget.
    Time PowerpackV2WidgetDistributionDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Xaxis PowerpackV2WidgetDistributionDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    Yaxis PowerpackV2WidgetDistributionDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LegendSize string
    The size of the legend displayed in the widget.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Markers []PowerpackV2WidgetDistributionDefinitionMarker
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    Requests []PowerpackV2WidgetDistributionDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    ShowLegend bool
    Whether or not to show the legend on this widget.
    Time PowerpackV2WidgetDistributionDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Xaxis PowerpackV2WidgetDistributionDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    Yaxis PowerpackV2WidgetDistributionDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend_size string
    The size of the legend displayed in the widget.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers list(object)
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    requests list(object)
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    show_legend bool
    Whether or not to show the legend on this widget.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    xaxis object
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis object
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize String
    The size of the legend displayed in the widget.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers List<PowerpackV2WidgetDistributionDefinitionMarker>
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    requests List<PowerpackV2WidgetDistributionDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    showLegend Boolean
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetDistributionDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetDistributionDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetDistributionDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize string
    The size of the legend displayed in the widget.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers PowerpackV2WidgetDistributionDefinitionMarker[]
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    requests PowerpackV2WidgetDistributionDefinitionRequest[]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    showLegend boolean
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetDistributionDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetDistributionDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetDistributionDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend_size str
    The size of the legend displayed in the widget.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers Sequence[PowerpackV2WidgetDistributionDefinitionMarker]
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    requests Sequence[PowerpackV2WidgetDistributionDefinitionRequest]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    show_legend bool
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetDistributionDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetDistributionDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetDistributionDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize String
    The size of the legend displayed in the widget.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers List<Property Map>
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    showLegend Boolean
    Whether or not to show the legend on this widget.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    xaxis Property Map
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis Property Map
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.

    PowerpackV2WidgetDistributionDefinitionMarker, PowerpackV2WidgetDistributionDefinitionMarkerArgs

    Value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    DisplayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    Label string
    Label to display over the marker.
    Time string
    Timestamp for the marker position.
    Value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    DisplayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    Label string
    Label to display over the marker.
    Time string
    Timestamp for the marker position.
    value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    display_type string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label string
    Label to display over the marker.
    time string
    Timestamp for the marker position.
    value String
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType String
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label String
    Label to display over the marker.
    time String
    Timestamp for the marker position.
    value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label string
    Label to display over the marker.
    time string
    Timestamp for the marker position.
    value str
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    display_type str
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label str
    Label to display over the marker.
    time str
    Timestamp for the marker position.
    value String
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType String
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label String
    Label to display over the marker.
    time String
    Timestamp for the marker position.

    PowerpackV2WidgetDistributionDefinitionRequest, PowerpackV2WidgetDistributionDefinitionRequestArgs

    ApmQuery PowerpackV2WidgetDistributionDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ApmStatsQuery PowerpackV2WidgetDistributionDefinitionRequestApmStatsQuery
    The APM stats query to use in the widget.
    Formulas List<PowerpackV2WidgetDistributionDefinitionRequestFormula>
    A list of formulas to use in the widget.
    HistogramQuery PowerpackV2WidgetDistributionDefinitionRequestHistogramQuery
    Singular query block for histogram-mode distribution requests.
    LogQuery PowerpackV2WidgetDistributionDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetDistributionDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetDistributionDefinitionRequestQuery>
    A list of queries to use in the widget.
    RequestType string
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    RumQuery PowerpackV2WidgetDistributionDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Style PowerpackV2WidgetDistributionDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    ApmQuery PowerpackV2WidgetDistributionDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ApmStatsQuery PowerpackV2WidgetDistributionDefinitionRequestApmStatsQuery
    The APM stats query to use in the widget.
    Formulas []PowerpackV2WidgetDistributionDefinitionRequestFormula
    A list of formulas to use in the widget.
    HistogramQuery PowerpackV2WidgetDistributionDefinitionRequestHistogramQuery
    Singular query block for histogram-mode distribution requests.
    LogQuery PowerpackV2WidgetDistributionDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetDistributionDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetDistributionDefinitionRequestQuery
    A list of queries to use in the widget.
    RequestType string
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    RumQuery PowerpackV2WidgetDistributionDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Style PowerpackV2WidgetDistributionDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apm_stats_query object
    The APM stats query to use in the widget.
    formulas list(object)
    A list of formulas to use in the widget.
    histogram_query object
    Singular query block for histogram-mode distribution requests.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    request_type string
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style object
    The style of the widget graph. One nested block is allowed using the structure below.
    apmQuery PowerpackV2WidgetDistributionDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmStatsQuery PowerpackV2WidgetDistributionDefinitionRequestApmStatsQuery
    The APM stats query to use in the widget.
    formulas List<PowerpackV2WidgetDistributionDefinitionRequestFormula>
    A list of formulas to use in the widget.
    histogramQuery PowerpackV2WidgetDistributionDefinitionRequestHistogramQuery
    Singular query block for histogram-mode distribution requests.
    logQuery PowerpackV2WidgetDistributionDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetDistributionDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetDistributionDefinitionRequestQuery>
    A list of queries to use in the widget.
    requestType String
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    rumQuery PowerpackV2WidgetDistributionDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style PowerpackV2WidgetDistributionDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apmQuery PowerpackV2WidgetDistributionDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmStatsQuery PowerpackV2WidgetDistributionDefinitionRequestApmStatsQuery
    The APM stats query to use in the widget.
    formulas PowerpackV2WidgetDistributionDefinitionRequestFormula[]
    A list of formulas to use in the widget.
    histogramQuery PowerpackV2WidgetDistributionDefinitionRequestHistogramQuery
    Singular query block for histogram-mode distribution requests.
    logQuery PowerpackV2WidgetDistributionDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetDistributionDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetDistributionDefinitionRequestQuery[]
    A list of queries to use in the widget.
    requestType string
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    rumQuery PowerpackV2WidgetDistributionDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style PowerpackV2WidgetDistributionDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apm_query PowerpackV2WidgetDistributionDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apm_stats_query PowerpackV2WidgetDistributionDefinitionRequestApmStatsQuery
    The APM stats query to use in the widget.
    formulas Sequence[PowerpackV2WidgetDistributionDefinitionRequestFormula]
    A list of formulas to use in the widget.
    histogram_query PowerpackV2WidgetDistributionDefinitionRequestHistogramQuery
    Singular query block for histogram-mode distribution requests.
    log_query PowerpackV2WidgetDistributionDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetDistributionDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetDistributionDefinitionRequestQuery]
    A list of queries to use in the widget.
    request_type str
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    rum_query PowerpackV2WidgetDistributionDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetDistributionDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style PowerpackV2WidgetDistributionDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmStatsQuery Property Map
    The APM stats query to use in the widget.
    formulas List<Property Map>
    A list of formulas to use in the widget.
    histogramQuery Property Map
    Singular query block for histogram-mode distribution requests.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    requestType String
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style Property Map
    The style of the widget graph. One nested block is allowed using the structure below.

    PowerpackV2WidgetDistributionDefinitionRequestApmQuery, PowerpackV2WidgetDistributionDefinitionRequestApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetDistributionDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetDistributionDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetDistributionDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetDistributionDefinitionRequestApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetDistributionDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetDistributionDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetDistributionDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetDistributionDefinitionRequestApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetDistributionDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetDistributionDefinitionRequestApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetDistributionDefinitionRequestApmQueryComputeQuery, PowerpackV2WidgetDistributionDefinitionRequestApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBy, PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBySortQuery, PowerpackV2WidgetDistributionDefinitionRequestApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetDistributionDefinitionRequestApmQueryMultiCompute, PowerpackV2WidgetDistributionDefinitionRequestApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetDistributionDefinitionRequestApmStatsQuery, PowerpackV2WidgetDistributionDefinitionRequestApmStatsQueryArgs

    Env string
    The environment name.
    Name string
    The operation name associated with the service.
    PrimaryTag string
    The organization's host group name and value.
    RowType string
    The level of detail for the request. Valid values are service, resource, span.
    Service string
    The service name.
    Columns List<PowerpackV2WidgetDistributionDefinitionRequestApmStatsQueryColumn>
    Column properties used by the front end for display.
    Resource string
    The resource name.
    Env string
    The environment name.
    Name string
    The operation name associated with the service.
    PrimaryTag string
    The organization's host group name and value.
    RowType string
    The level of detail for the request. Valid values are service, resource, span.
    Service string
    The service name.
    Columns []PowerpackV2WidgetDistributionDefinitionRequestApmStatsQueryColumn
    Column properties used by the front end for display.
    Resource string
    The resource name.
    env string
    The environment name.
    name string
    The operation name associated with the service.
    primary_tag string
    The organization's host group name and value.
    row_type string
    The level of detail for the request. Valid values are service, resource, span.
    service string
    The service name.
    columns list(object)
    Column properties used by the front end for display.
    resource string
    The resource name.
    env String
    The environment name.
    name String
    The operation name associated with the service.
    primaryTag String
    The organization's host group name and value.
    rowType String
    The level of detail for the request. Valid values are service, resource, span.
    service String
    The service name.
    columns List<PowerpackV2WidgetDistributionDefinitionRequestApmStatsQueryColumn>
    Column properties used by the front end for display.
    resource String
    The resource name.
    env string
    The environment name.
    name string
    The operation name associated with the service.
    primaryTag string
    The organization's host group name and value.
    rowType string
    The level of detail for the request. Valid values are service, resource, span.
    service string
    The service name.
    columns PowerpackV2WidgetDistributionDefinitionRequestApmStatsQueryColumn[]
    Column properties used by the front end for display.
    resource string
    The resource name.
    env str
    The environment name.
    name str
    The operation name associated with the service.
    primary_tag str
    The organization's host group name and value.
    row_type str
    The level of detail for the request. Valid values are service, resource, span.
    service str
    The service name.
    columns Sequence[PowerpackV2WidgetDistributionDefinitionRequestApmStatsQueryColumn]
    Column properties used by the front end for display.
    resource str
    The resource name.
    env String
    The environment name.
    name String
    The operation name associated with the service.
    primaryTag String
    The organization's host group name and value.
    rowType String
    The level of detail for the request. Valid values are service, resource, span.
    service String
    The service name.
    columns List<Property Map>
    Column properties used by the front end for display.
    resource String
    The resource name.

    PowerpackV2WidgetDistributionDefinitionRequestApmStatsQueryColumn, PowerpackV2WidgetDistributionDefinitionRequestApmStatsQueryColumnArgs

    Name string
    The column name.
    Alias string
    A user-assigned alias for the column.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Name string
    The column name.
    Alias string
    A user-assigned alias for the column.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    name string
    The column name.
    alias string
    A user-assigned alias for the column.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order string
    Widget sorting methods. Valid values are asc, desc.
    name String
    The column name.
    alias String
    A user-assigned alias for the column.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order String
    Widget sorting methods. Valid values are asc, desc.
    name string
    The column name.
    alias string
    A user-assigned alias for the column.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order string
    Widget sorting methods. Valid values are asc, desc.
    name str
    The column name.
    alias str
    A user-assigned alias for the column.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order str
    Widget sorting methods. Valid values are asc, desc.
    name String
    The column name.
    alias String
    A user-assigned alias for the column.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order String
    Widget sorting methods. Valid values are asc, desc.

    PowerpackV2WidgetDistributionDefinitionRequestFormula, PowerpackV2WidgetDistributionDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetDistributionDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetDistributionDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetDistributionDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetDistributionDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetDistributionDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetDistributionDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetDistributionDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetDistributionDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetDistributionDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetDistributionDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetDistributionDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetDistributionDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetDistributionDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetDistributionDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetDistributionDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetDistributionDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetDistributionDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetDistributionDefinitionRequestFormulaLimit, PowerpackV2WidgetDistributionDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetDistributionDefinitionRequestFormulaStyle, PowerpackV2WidgetDistributionDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetDistributionDefinitionRequestHistogramQuery, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryArgs

    apm_resource_stats_query object
    APM resource stats query for histogram-mode distribution.
    event_query object
    Event query for histogram-mode distribution.
    metric_query object
    Metric query for histogram-mode distribution.
    apmResourceStatsQuery Property Map
    APM resource stats query for histogram-mode distribution.
    eventQuery Property Map
    Event query for histogram-mode distribution.
    metricQuery Property Map
    Metric query for histogram-mode distribution.

    PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQuery, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQuery, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryArgs

    Computes List<PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryMetricQuery, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetDistributionDefinitionRequestLogQuery, PowerpackV2WidgetDistributionDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetDistributionDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetDistributionDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetDistributionDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetDistributionDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetDistributionDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetDistributionDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetDistributionDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetDistributionDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetDistributionDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetDistributionDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetDistributionDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetDistributionDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetDistributionDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetDistributionDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetDistributionDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetDistributionDefinitionRequestProcessQuery, PowerpackV2WidgetDistributionDefinitionRequestProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetDistributionDefinitionRequestQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetDistributionDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetDistributionDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetDistributionDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetDistributionDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetDistributionDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetDistributionDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetDistributionDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetDistributionDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetDistributionDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetDistributionDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetDistributionDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetDistributionDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetDistributionDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetDistributionDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetDistributionDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetDistributionDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetDistributionDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetDistributionDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetDistributionDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetDistributionDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetDistributionDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetDistributionDefinitionRequestQueryMetricQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetDistributionDefinitionRequestQueryProcessQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetDistributionDefinitionRequestQuerySloQuery, PowerpackV2WidgetDistributionDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetDistributionDefinitionRequestRumQuery, PowerpackV2WidgetDistributionDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetDistributionDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetDistributionDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetDistributionDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetDistributionDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetDistributionDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetDistributionDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetDistributionDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetDistributionDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetDistributionDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetDistributionDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetDistributionDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetDistributionDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetDistributionDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetDistributionDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetDistributionDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetDistributionDefinitionRequestSecurityQuery, PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryComputeQuery, PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBy, PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery, PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryMultiCompute, PowerpackV2WidgetDistributionDefinitionRequestSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetDistributionDefinitionRequestStyle, PowerpackV2WidgetDistributionDefinitionRequestStyleArgs

    OrderBy string
    How to order series. Valid values are tags, values.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    OrderBy string
    How to order series. Valid values are tags, values.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    order_by string
    How to order series. Valid values are tags, values.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy String
    How to order series. Valid values are tags, values.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy string
    How to order series. Valid values are tags, values.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    order_by str
    How to order series. Valid values are tags, values.
    palette str
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy String
    How to order series. Valid values are tags, values.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.

    PowerpackV2WidgetDistributionDefinitionTime, PowerpackV2WidgetDistributionDefinitionTimeArgs

    Fixed PowerpackV2WidgetDistributionDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetDistributionDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetDistributionDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetDistributionDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetDistributionDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetDistributionDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetDistributionDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetDistributionDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetDistributionDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetDistributionDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetDistributionDefinitionTimeFixed, PowerpackV2WidgetDistributionDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetDistributionDefinitionTimeLive, PowerpackV2WidgetDistributionDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetDistributionDefinitionXaxis, PowerpackV2WidgetDistributionDefinitionXaxisArgs

    IncludeZero bool
    True includes zero.
    Max string
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    Min string
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    NumBuckets int
    Number of value buckets to target, also known as the resolution of the value bins.
    Scale string
    Specifies the scale type. Possible values are linear.
    IncludeZero bool
    True includes zero.
    Max string
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    Min string
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    NumBuckets int
    Number of value buckets to target, also known as the resolution of the value bins.
    Scale string
    Specifies the scale type. Possible values are linear.
    include_zero bool
    True includes zero.
    max string
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    min string
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    num_buckets number
    Number of value buckets to target, also known as the resolution of the value bins.
    scale string
    Specifies the scale type. Possible values are linear.
    includeZero Boolean
    True includes zero.
    max String
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    min String
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    numBuckets Integer
    Number of value buckets to target, also known as the resolution of the value bins.
    scale String
    Specifies the scale type. Possible values are linear.
    includeZero boolean
    True includes zero.
    max string
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    min string
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    numBuckets number
    Number of value buckets to target, also known as the resolution of the value bins.
    scale string
    Specifies the scale type. Possible values are linear.
    include_zero bool
    True includes zero.
    max str
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    min str
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    num_buckets int
    Number of value buckets to target, also known as the resolution of the value bins.
    scale str
    Specifies the scale type. Possible values are linear.
    includeZero Boolean
    True includes zero.
    max String
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    min String
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    numBuckets Number
    Number of value buckets to target, also known as the resolution of the value bins.
    scale String
    Specifies the scale type. Possible values are linear.

    PowerpackV2WidgetDistributionDefinitionYaxis, PowerpackV2WidgetDistributionDefinitionYaxisArgs

    IncludeZero bool
    True includes zero.
    Label string
    The label of the axis to display on the graph.
    Max string
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    Min string
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    Scale string
    Specifies the scale type. Possible values are linear or log.
    IncludeZero bool
    True includes zero.
    Label string
    The label of the axis to display on the graph.
    Max string
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    Min string
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    Scale string
    Specifies the scale type. Possible values are linear or log.
    include_zero bool
    True includes zero.
    label string
    The label of the axis to display on the graph.
    max string
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    min string
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    scale string
    Specifies the scale type. Possible values are linear or log.
    includeZero Boolean
    True includes zero.
    label String
    The label of the axis to display on the graph.
    max String
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    min String
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    scale String
    Specifies the scale type. Possible values are linear or log.
    includeZero boolean
    True includes zero.
    label string
    The label of the axis to display on the graph.
    max string
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    min string
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    scale string
    Specifies the scale type. Possible values are linear or log.
    include_zero bool
    True includes zero.
    label str
    The label of the axis to display on the graph.
    max str
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    min str
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    scale str
    Specifies the scale type. Possible values are linear or log.
    includeZero Boolean
    True includes zero.
    label String
    The label of the axis to display on the graph.
    max String
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    min String
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    scale String
    Specifies the scale type. Possible values are linear or log.

    PowerpackV2WidgetEventStreamDefinition, PowerpackV2WidgetEventStreamDefinitionArgs

    Query string
    Query to filter the event stream with.
    Description string
    The description of the widget.
    EventSize string
    Size to use to display an event. Valid values are s, l.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TagsExecution string
    The execution method for multi-value filters, options: and or or.
    Time PowerpackV2WidgetEventStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Query string
    Query to filter the event stream with.
    Description string
    The description of the widget.
    EventSize string
    Size to use to display an event. Valid values are s, l.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TagsExecution string
    The execution method for multi-value filters, options: and or or.
    Time PowerpackV2WidgetEventStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    query string
    Query to filter the event stream with.
    description string
    The description of the widget.
    event_size string
    Size to use to display an event. Valid values are s, l.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags_execution string
    The execution method for multi-value filters, options: and or or.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    query String
    Query to filter the event stream with.
    description String
    The description of the widget.
    eventSize String
    Size to use to display an event. Valid values are s, l.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution String
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetEventStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    query string
    Query to filter the event stream with.
    description string
    The description of the widget.
    eventSize string
    Size to use to display an event. Valid values are s, l.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution string
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetEventStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    query str
    Query to filter the event stream with.
    description str
    The description of the widget.
    event_size str
    Size to use to display an event. Valid values are s, l.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags_execution str
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetEventStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    query String
    Query to filter the event stream with.
    description String
    The description of the widget.
    eventSize String
    Size to use to display an event. Valid values are s, l.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution String
    The execution method for multi-value filters, options: and or or.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetEventStreamDefinitionTime, PowerpackV2WidgetEventStreamDefinitionTimeArgs

    Fixed PowerpackV2WidgetEventStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetEventStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetEventStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetEventStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetEventStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetEventStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetEventStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetEventStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetEventStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetEventStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetEventStreamDefinitionTimeFixed, PowerpackV2WidgetEventStreamDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetEventStreamDefinitionTimeLive, PowerpackV2WidgetEventStreamDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetEventTimelineDefinition, PowerpackV2WidgetEventTimelineDefinitionArgs

    Query string
    Query to filter the event timeline with.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TagsExecution string
    The execution method for multi-value filters, options: and or or.
    Time PowerpackV2WidgetEventTimelineDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Query string
    Query to filter the event timeline with.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TagsExecution string
    The execution method for multi-value filters, options: and or or.
    Time PowerpackV2WidgetEventTimelineDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    query string
    Query to filter the event timeline with.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags_execution string
    The execution method for multi-value filters, options: and or or.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    query String
    Query to filter the event timeline with.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution String
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetEventTimelineDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    query string
    Query to filter the event timeline with.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution string
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetEventTimelineDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    query str
    Query to filter the event timeline with.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags_execution str
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetEventTimelineDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    query String
    Query to filter the event timeline with.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution String
    The execution method for multi-value filters, options: and or or.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetEventTimelineDefinitionTime, PowerpackV2WidgetEventTimelineDefinitionTimeArgs

    Fixed PowerpackV2WidgetEventTimelineDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetEventTimelineDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetEventTimelineDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetEventTimelineDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetEventTimelineDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetEventTimelineDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetEventTimelineDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetEventTimelineDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetEventTimelineDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetEventTimelineDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetEventTimelineDefinitionTimeFixed, PowerpackV2WidgetEventTimelineDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetEventTimelineDefinitionTimeLive, PowerpackV2WidgetEventTimelineDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetFreeTextDefinition, PowerpackV2WidgetFreeTextDefinitionArgs

    Text string
    The text to display in the widget.
    BackgroundColor string
    The background color of the text widget.
    Color string
    The color of the text in the widget.
    Description string
    The description of the widget.
    FontSize string
    The size of the text in the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TextAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    Time PowerpackV2WidgetFreeTextDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Text string
    The text to display in the widget.
    BackgroundColor string
    The background color of the text widget.
    Color string
    The color of the text in the widget.
    Description string
    The description of the widget.
    FontSize string
    The size of the text in the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TextAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    Time PowerpackV2WidgetFreeTextDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    text string
    The text to display in the widget.
    background_color string
    The background color of the text widget.
    color string
    The color of the text in the widget.
    description string
    The description of the widget.
    font_size string
    The size of the text in the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    text_align string
    The alignment of the text in the widget. Valid values are center, left, right.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    text String
    The text to display in the widget.
    backgroundColor String
    The background color of the text widget.
    color String
    The color of the text in the widget.
    description String
    The description of the widget.
    fontSize String
    The size of the text in the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    textAlign String
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetFreeTextDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    text string
    The text to display in the widget.
    backgroundColor string
    The background color of the text widget.
    color string
    The color of the text in the widget.
    description string
    The description of the widget.
    fontSize string
    The size of the text in the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    textAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetFreeTextDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    text str
    The text to display in the widget.
    background_color str
    The background color of the text widget.
    color str
    The color of the text in the widget.
    description str
    The description of the widget.
    font_size str
    The size of the text in the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    text_align str
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetFreeTextDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    text String
    The text to display in the widget.
    backgroundColor String
    The background color of the text widget.
    color String
    The color of the text in the widget.
    description String
    The description of the widget.
    fontSize String
    The size of the text in the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    textAlign String
    The alignment of the text in the widget. Valid values are center, left, right.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetFreeTextDefinitionTime, PowerpackV2WidgetFreeTextDefinitionTimeArgs

    Fixed PowerpackV2WidgetFreeTextDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetFreeTextDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetFreeTextDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetFreeTextDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetFreeTextDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetFreeTextDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetFreeTextDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetFreeTextDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetFreeTextDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetFreeTextDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetFreeTextDefinitionTimeFixed, PowerpackV2WidgetFreeTextDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetFreeTextDefinitionTimeLive, PowerpackV2WidgetFreeTextDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetFunnelDefinition, PowerpackV2WidgetFunnelDefinitionArgs

    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Request PowerpackV2WidgetFunnelDefinitionRequest
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    Time PowerpackV2WidgetFunnelDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Request PowerpackV2WidgetFunnelDefinitionRequest
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    Time PowerpackV2WidgetFunnelDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request object
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetFunnelDefinitionRequest
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    time PowerpackV2WidgetFunnelDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetFunnelDefinitionRequest
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    time PowerpackV2WidgetFunnelDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetFunnelDefinitionRequest
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    time PowerpackV2WidgetFunnelDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request Property Map
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetFunnelDefinitionRequest, PowerpackV2WidgetFunnelDefinitionRequestArgs

    Query PowerpackV2WidgetFunnelDefinitionRequestQuery
    The query for the funnel widget request.
    Query PowerpackV2WidgetFunnelDefinitionRequestQuery
    The query for the funnel widget request.
    query object
    The query for the funnel widget request.
    query PowerpackV2WidgetFunnelDefinitionRequestQuery
    The query for the funnel widget request.
    query PowerpackV2WidgetFunnelDefinitionRequestQuery
    The query for the funnel widget request.
    query PowerpackV2WidgetFunnelDefinitionRequestQuery
    The query for the funnel widget request.
    query Property Map
    The query for the funnel widget request.

    PowerpackV2WidgetFunnelDefinitionRequestQuery, PowerpackV2WidgetFunnelDefinitionRequestQueryArgs

    DataSource string
    The data source for funnel queries. Valid values are rum.
    QueryString string
    The widget query.
    Steps List<PowerpackV2WidgetFunnelDefinitionRequestQueryStep>
    The funnel steps. Multiple step blocks are allowed.
    DataSource string
    The data source for funnel queries. Valid values are rum.
    QueryString string
    The widget query.
    Steps []PowerpackV2WidgetFunnelDefinitionRequestQueryStep
    The funnel steps. Multiple step blocks are allowed.
    data_source string
    The data source for funnel queries. Valid values are rum.
    query_string string
    The widget query.
    steps list(object)
    The funnel steps. Multiple step blocks are allowed.
    dataSource String
    The data source for funnel queries. Valid values are rum.
    queryString String
    The widget query.
    steps List<PowerpackV2WidgetFunnelDefinitionRequestQueryStep>
    The funnel steps. Multiple step blocks are allowed.
    dataSource string
    The data source for funnel queries. Valid values are rum.
    queryString string
    The widget query.
    steps PowerpackV2WidgetFunnelDefinitionRequestQueryStep[]
    The funnel steps. Multiple step blocks are allowed.
    data_source str
    The data source for funnel queries. Valid values are rum.
    query_string str
    The widget query.
    steps Sequence[PowerpackV2WidgetFunnelDefinitionRequestQueryStep]
    The funnel steps. Multiple step blocks are allowed.
    dataSource String
    The data source for funnel queries. Valid values are rum.
    queryString String
    The widget query.
    steps List<Property Map>
    The funnel steps. Multiple step blocks are allowed.

    PowerpackV2WidgetFunnelDefinitionRequestQueryStep, PowerpackV2WidgetFunnelDefinitionRequestQueryStepArgs

    Facet string
    The facet of the step.
    Value string
    The value of the step.
    Facet string
    The facet of the step.
    Value string
    The value of the step.
    facet string
    The facet of the step.
    value string
    The value of the step.
    facet String
    The facet of the step.
    value String
    The value of the step.
    facet string
    The facet of the step.
    value string
    The value of the step.
    facet str
    The facet of the step.
    value str
    The value of the step.
    facet String
    The facet of the step.
    value String
    The value of the step.

    PowerpackV2WidgetFunnelDefinitionTime, PowerpackV2WidgetFunnelDefinitionTimeArgs

    Fixed PowerpackV2WidgetFunnelDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetFunnelDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetFunnelDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetFunnelDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetFunnelDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetFunnelDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetFunnelDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetFunnelDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetFunnelDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetFunnelDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetFunnelDefinitionTimeFixed, PowerpackV2WidgetFunnelDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetFunnelDefinitionTimeLive, PowerpackV2WidgetFunnelDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGeomapDefinition, PowerpackV2WidgetGeomapDefinitionArgs

    CustomLinks List<PowerpackV2WidgetGeomapDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests List<PowerpackV2WidgetGeomapDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    Style PowerpackV2WidgetGeomapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    Time PowerpackV2WidgetGeomapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    View PowerpackV2WidgetGeomapDefinitionView
    The view of the world that the map should render.
    CustomLinks []PowerpackV2WidgetGeomapDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests []PowerpackV2WidgetGeomapDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    Style PowerpackV2WidgetGeomapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    Time PowerpackV2WidgetGeomapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    View PowerpackV2WidgetGeomapDefinitionView
    The view of the world that the map should render.
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests list(object)
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    style object
    The style of the widget graph. One nested block is allowed using the structure below.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    view object
    The view of the world that the map should render.
    customLinks List<PowerpackV2WidgetGeomapDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<PowerpackV2WidgetGeomapDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    style PowerpackV2WidgetGeomapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    time PowerpackV2WidgetGeomapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    view PowerpackV2WidgetGeomapDefinitionView
    The view of the world that the map should render.
    customLinks PowerpackV2WidgetGeomapDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests PowerpackV2WidgetGeomapDefinitionRequest[]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    style PowerpackV2WidgetGeomapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    time PowerpackV2WidgetGeomapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    view PowerpackV2WidgetGeomapDefinitionView
    The view of the world that the map should render.
    custom_links Sequence[PowerpackV2WidgetGeomapDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests Sequence[PowerpackV2WidgetGeomapDefinitionRequest]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    style PowerpackV2WidgetGeomapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    time PowerpackV2WidgetGeomapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    view PowerpackV2WidgetGeomapDefinitionView
    The view of the world that the map should render.
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    style Property Map
    The style of the widget graph. One nested block is allowed using the structure below.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    view Property Map
    The view of the world that the map should render.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGeomapDefinitionRequest, PowerpackV2WidgetGeomapDefinitionRequestArgs

    Formulas List<PowerpackV2WidgetGeomapDefinitionRequestFormula>
    List of formulas that operate on queries.
    LogQuery PowerpackV2WidgetGeomapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGeomapDefinitionRequestQuery>
    List of queries that can be returned directly or used in formulas.
    RumQuery PowerpackV2WidgetGeomapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas []PowerpackV2WidgetGeomapDefinitionRequestFormula
    List of formulas that operate on queries.
    LogQuery PowerpackV2WidgetGeomapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGeomapDefinitionRequestQuery
    List of queries that can be returned directly or used in formulas.
    RumQuery PowerpackV2WidgetGeomapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas list(object)
    List of formulas that operate on queries.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    List of queries that can be returned directly or used in formulas.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<PowerpackV2WidgetGeomapDefinitionRequestFormula>
    List of formulas that operate on queries.
    logQuery PowerpackV2WidgetGeomapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGeomapDefinitionRequestQuery>
    List of queries that can be returned directly or used in formulas.
    rumQuery PowerpackV2WidgetGeomapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas PowerpackV2WidgetGeomapDefinitionRequestFormula[]
    List of formulas that operate on queries.
    logQuery PowerpackV2WidgetGeomapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGeomapDefinitionRequestQuery[]
    List of queries that can be returned directly or used in formulas.
    rumQuery PowerpackV2WidgetGeomapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas Sequence[PowerpackV2WidgetGeomapDefinitionRequestFormula]
    List of formulas that operate on queries.
    log_query PowerpackV2WidgetGeomapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGeomapDefinitionRequestQuery]
    List of queries that can be returned directly or used in formulas.
    rum_query PowerpackV2WidgetGeomapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<Property Map>
    List of formulas that operate on queries.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    List of queries that can be returned directly or used in formulas.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    PowerpackV2WidgetGeomapDefinitionRequestFormula, PowerpackV2WidgetGeomapDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGeomapDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGeomapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGeomapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGeomapDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGeomapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGeomapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGeomapDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGeomapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGeomapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGeomapDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGeomapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGeomapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGeomapDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGeomapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGeomapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGeomapDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetGeomapDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGeomapDefinitionRequestFormulaLimit, PowerpackV2WidgetGeomapDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGeomapDefinitionRequestFormulaStyle, PowerpackV2WidgetGeomapDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGeomapDefinitionRequestLogQuery, PowerpackV2WidgetGeomapDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGeomapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGeomapDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGeomapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGeomapDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGeomapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGeomapDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGeomapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGeomapDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGeomapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGeomapDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGeomapDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetGeomapDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetGeomapDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGeomapDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetGeomapDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGeomapDefinitionRequestQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGeomapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGeomapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGeomapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGeomapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGeomapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGeomapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGeomapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGeomapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGeomapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGeomapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGeomapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGeomapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGeomapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGeomapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGeomapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGeomapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGeomapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGeomapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGeomapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGeomapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGeomapDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGeomapDefinitionRequestQueryMetricQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGeomapDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGeomapDefinitionRequestQuerySloQuery, PowerpackV2WidgetGeomapDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGeomapDefinitionRequestRumQuery, PowerpackV2WidgetGeomapDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGeomapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGeomapDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGeomapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGeomapDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGeomapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGeomapDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGeomapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGeomapDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGeomapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGeomapDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGeomapDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetGeomapDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetGeomapDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGeomapDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetGeomapDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGeomapDefinitionStyle, PowerpackV2WidgetGeomapDefinitionStyleArgs

    Palette string
    The color palette to apply to the widget.
    PaletteFlip bool
    A Boolean indicating whether to flip the palette tones.
    Palette string
    The color palette to apply to the widget.
    PaletteFlip bool
    A Boolean indicating whether to flip the palette tones.
    palette string
    The color palette to apply to the widget.
    palette_flip bool
    A Boolean indicating whether to flip the palette tones.
    palette String
    The color palette to apply to the widget.
    paletteFlip Boolean
    A Boolean indicating whether to flip the palette tones.
    palette string
    The color palette to apply to the widget.
    paletteFlip boolean
    A Boolean indicating whether to flip the palette tones.
    palette str
    The color palette to apply to the widget.
    palette_flip bool
    A Boolean indicating whether to flip the palette tones.
    palette String
    The color palette to apply to the widget.
    paletteFlip Boolean
    A Boolean indicating whether to flip the palette tones.

    PowerpackV2WidgetGeomapDefinitionTime, PowerpackV2WidgetGeomapDefinitionTimeArgs

    Fixed PowerpackV2WidgetGeomapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGeomapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGeomapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGeomapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGeomapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGeomapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGeomapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGeomapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGeomapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGeomapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGeomapDefinitionTimeFixed, PowerpackV2WidgetGeomapDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGeomapDefinitionTimeLive, PowerpackV2WidgetGeomapDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGeomapDefinitionView, PowerpackV2WidgetGeomapDefinitionViewArgs

    Focus string
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    Focus string
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    focus string
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    focus String
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    focus string
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    focus str
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    focus String
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).

    PowerpackV2WidgetGroupDefinition, PowerpackV2WidgetGroupDefinitionArgs

    LayoutType string
    The layout type of the group. Valid values are ordered.
    BackgroundColor string
    The background color of the group title, options: vividBlue, vividPurple, vividPink, vividOrange, vividYellow, vividGreen, blue, purple, pink, orange, yellow, green, gray or white
    BannerImg string
    The image URL to display as a banner for the group.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    ShowTitle bool
    Whether to show the title or not. Defaults to true.
    Time PowerpackV2WidgetGroupDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Widgets List<PowerpackV2WidgetGroupDefinitionWidget>
    The list of widgets in this group.
    LayoutType string
    The layout type of the group. Valid values are ordered.
    BackgroundColor string
    The background color of the group title, options: vividBlue, vividPurple, vividPink, vividOrange, vividYellow, vividGreen, blue, purple, pink, orange, yellow, green, gray or white
    BannerImg string
    The image URL to display as a banner for the group.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    ShowTitle bool
    Whether to show the title or not. Defaults to true.
    Time PowerpackV2WidgetGroupDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Widgets []PowerpackV2WidgetGroupDefinitionWidget
    The list of widgets in this group.
    layout_type string
    The layout type of the group. Valid values are ordered.
    background_color string
    The background color of the group title, options: vividBlue, vividPurple, vividPink, vividOrange, vividYellow, vividGreen, blue, purple, pink, orange, yellow, green, gray or white
    string
    The image URL to display as a banner for the group.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    show_title bool
    Whether to show the title or not. Defaults to true.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    widgets list(object)
    The list of widgets in this group.
    layoutType String
    The layout type of the group. Valid values are ordered.
    backgroundColor String
    The background color of the group title, options: vividBlue, vividPurple, vividPink, vividOrange, vividYellow, vividGreen, blue, purple, pink, orange, yellow, green, gray or white
    bannerImg String
    The image URL to display as a banner for the group.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showTitle Boolean
    Whether to show the title or not. Defaults to true.
    time PowerpackV2WidgetGroupDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    widgets List<PowerpackV2WidgetGroupDefinitionWidget>
    The list of widgets in this group.
    layoutType string
    The layout type of the group. Valid values are ordered.
    backgroundColor string
    The background color of the group title, options: vividBlue, vividPurple, vividPink, vividOrange, vividYellow, vividGreen, blue, purple, pink, orange, yellow, green, gray or white
    bannerImg string
    The image URL to display as a banner for the group.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showTitle boolean
    Whether to show the title or not. Defaults to true.
    time PowerpackV2WidgetGroupDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    widgets PowerpackV2WidgetGroupDefinitionWidget[]
    The list of widgets in this group.
    layout_type str
    The layout type of the group. Valid values are ordered.
    background_color str
    The background color of the group title, options: vividBlue, vividPurple, vividPink, vividOrange, vividYellow, vividGreen, blue, purple, pink, orange, yellow, green, gray or white
    str
    The image URL to display as a banner for the group.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    show_title bool
    Whether to show the title or not. Defaults to true.
    time PowerpackV2WidgetGroupDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    widgets Sequence[PowerpackV2WidgetGroupDefinitionWidget]
    The list of widgets in this group.
    layoutType String
    The layout type of the group. Valid values are ordered.
    backgroundColor String
    The background color of the group title, options: vividBlue, vividPurple, vividPink, vividOrange, vividYellow, vividGreen, blue, purple, pink, orange, yellow, green, gray or white
    bannerImg String
    The image URL to display as a banner for the group.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showTitle Boolean
    Whether to show the title or not. Defaults to true.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    widgets List<Property Map>
    The list of widgets in this group.

    PowerpackV2WidgetGroupDefinitionTime, PowerpackV2WidgetGroupDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidget, PowerpackV2WidgetGroupDefinitionWidgetArgs

    AlertGraphDefinition PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinition
    The definition for a Alert Graph widget.
    AlertValueDefinition PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinition
    The definition for a Alert Value widget.
    BarChartDefinition PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinition
    The definition for a Bar Chart widget.
    ChangeDefinition PowerpackV2WidgetGroupDefinitionWidgetChangeDefinition
    The definition for a Change widget.
    CheckStatusDefinition PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinition
    The definition for a Check Status widget.
    DistributionDefinition PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinition
    The definition for a Distribution widget.
    EventStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinition
    The definition for a Event Stream widget.
    EventTimelineDefinition PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinition
    The definition for a Event Timeline widget.
    FreeTextDefinition PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinition
    The definition for a Free Text widget.
    FunnelDefinition PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinition
    The definition for a Funnel widget.
    GeomapDefinition PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinition
    The definition for a Geomap widget.
    HeatmapDefinition PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinition
    The definition for a Heatmap widget.
    HostmapDefinition PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinition
    The definition for a Hostmap widget.
    Id int
    The ID of the widget.
    IframeDefinition PowerpackV2WidgetGroupDefinitionWidgetIframeDefinition
    The definition for an Iframe widget.
    ImageDefinition PowerpackV2WidgetGroupDefinitionWidgetImageDefinition
    The definition for an Image widget
    ListStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinition
    The definition for a List Stream widget.
    LogStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinition
    The definition for an Log Stream widget.
    ManageStatusDefinition PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinition
    The definition for an Manage Status widget.
    NoteDefinition PowerpackV2WidgetGroupDefinitionWidgetNoteDefinition
    The definition for a Note widget.
    PointPlotDefinition PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinition
    The definition for a Point Plot widget.
    QueryTableDefinition PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinition
    The definition for a Query Table widget.
    QueryValueDefinition PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinition
    The definition for a Query Value widget.
    RunWorkflowDefinition PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinition
    The definition for a Run Workflow widget.
    SankeyDefinition PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinition
    The definition for a Sankey diagram widget.
    ScatterplotDefinition PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinition
    The definition for a Scatterplot widget.
    ServiceLevelObjectiveDefinition PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinition
    The definition for a Service Level Objective widget.
    ServicemapDefinition PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinition
    The definition for a Service Map widget.
    SloListDefinition PowerpackV2WidgetGroupDefinitionWidgetSloListDefinition
    The definition for an SLO (Service Level Objective) List widget.
    SunburstDefinition PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinition
    The definition for a Sunburst widget.
    TimeseriesDefinition PowerpackV2WidgetGroupDefinitionWidgetTimeseriesDefinition
    The definition for a Timeseries widget.
    ToplistDefinition PowerpackV2WidgetGroupDefinitionWidgetToplistDefinition
    The definition for a Toplist widget.
    TopologyMapDefinition PowerpackV2WidgetGroupDefinitionWidgetTopologyMapDefinition
    The definition for a Topology Map widget.
    TraceServiceDefinition PowerpackV2WidgetGroupDefinitionWidgetTraceServiceDefinition
    The definition for a Trace Service widget.
    TreemapDefinition PowerpackV2WidgetGroupDefinitionWidgetTreemapDefinition
    The definition for a Treemap widget.
    WidgetLayout PowerpackV2WidgetGroupDefinitionWidgetWidgetLayout
    The layout of the widget on a 'free' dashboard.
    WildcardDefinition PowerpackV2WidgetGroupDefinitionWidgetWildcardDefinition
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    AlertGraphDefinition PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinition
    The definition for a Alert Graph widget.
    AlertValueDefinition PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinition
    The definition for a Alert Value widget.
    BarChartDefinition PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinition
    The definition for a Bar Chart widget.
    ChangeDefinition PowerpackV2WidgetGroupDefinitionWidgetChangeDefinition
    The definition for a Change widget.
    CheckStatusDefinition PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinition
    The definition for a Check Status widget.
    DistributionDefinition PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinition
    The definition for a Distribution widget.
    EventStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinition
    The definition for a Event Stream widget.
    EventTimelineDefinition PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinition
    The definition for a Event Timeline widget.
    FreeTextDefinition PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinition
    The definition for a Free Text widget.
    FunnelDefinition PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinition
    The definition for a Funnel widget.
    GeomapDefinition PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinition
    The definition for a Geomap widget.
    HeatmapDefinition PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinition
    The definition for a Heatmap widget.
    HostmapDefinition PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinition
    The definition for a Hostmap widget.
    Id int
    The ID of the widget.
    IframeDefinition PowerpackV2WidgetGroupDefinitionWidgetIframeDefinition
    The definition for an Iframe widget.
    ImageDefinition PowerpackV2WidgetGroupDefinitionWidgetImageDefinition
    The definition for an Image widget
    ListStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinition
    The definition for a List Stream widget.
    LogStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinition
    The definition for an Log Stream widget.
    ManageStatusDefinition PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinition
    The definition for an Manage Status widget.
    NoteDefinition PowerpackV2WidgetGroupDefinitionWidgetNoteDefinition
    The definition for a Note widget.
    PointPlotDefinition PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinition
    The definition for a Point Plot widget.
    QueryTableDefinition PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinition
    The definition for a Query Table widget.
    QueryValueDefinition PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinition
    The definition for a Query Value widget.
    RunWorkflowDefinition PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinition
    The definition for a Run Workflow widget.
    SankeyDefinition PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinition
    The definition for a Sankey diagram widget.
    ScatterplotDefinition PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinition
    The definition for a Scatterplot widget.
    ServiceLevelObjectiveDefinition PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinition
    The definition for a Service Level Objective widget.
    ServicemapDefinition PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinition
    The definition for a Service Map widget.
    SloListDefinition PowerpackV2WidgetGroupDefinitionWidgetSloListDefinition
    The definition for an SLO (Service Level Objective) List widget.
    SunburstDefinition PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinition
    The definition for a Sunburst widget.
    TimeseriesDefinition PowerpackV2WidgetGroupDefinitionWidgetTimeseriesDefinition
    The definition for a Timeseries widget.
    ToplistDefinition PowerpackV2WidgetGroupDefinitionWidgetToplistDefinition
    The definition for a Toplist widget.
    TopologyMapDefinition PowerpackV2WidgetGroupDefinitionWidgetTopologyMapDefinition
    The definition for a Topology Map widget.
    TraceServiceDefinition PowerpackV2WidgetGroupDefinitionWidgetTraceServiceDefinition
    The definition for a Trace Service widget.
    TreemapDefinition PowerpackV2WidgetGroupDefinitionWidgetTreemapDefinition
    The definition for a Treemap widget.
    WidgetLayout PowerpackV2WidgetGroupDefinitionWidgetWidgetLayout
    The layout of the widget on a 'free' dashboard.
    WildcardDefinition PowerpackV2WidgetGroupDefinitionWidgetWildcardDefinition
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    alert_graph_definition object
    The definition for a Alert Graph widget.
    alert_value_definition object
    The definition for a Alert Value widget.
    bar_chart_definition object
    The definition for a Bar Chart widget.
    change_definition object
    The definition for a Change widget.
    check_status_definition object
    The definition for a Check Status widget.
    distribution_definition object
    The definition for a Distribution widget.
    event_stream_definition object
    The definition for a Event Stream widget.
    event_timeline_definition object
    The definition for a Event Timeline widget.
    free_text_definition object
    The definition for a Free Text widget.
    funnel_definition object
    The definition for a Funnel widget.
    geomap_definition object
    The definition for a Geomap widget.
    heatmap_definition object
    The definition for a Heatmap widget.
    hostmap_definition object
    The definition for a Hostmap widget.
    id number
    The ID of the widget.
    iframe_definition object
    The definition for an Iframe widget.
    image_definition object
    The definition for an Image widget
    list_stream_definition object
    The definition for a List Stream widget.
    log_stream_definition object
    The definition for an Log Stream widget.
    manage_status_definition object
    The definition for an Manage Status widget.
    note_definition object
    The definition for a Note widget.
    point_plot_definition object
    The definition for a Point Plot widget.
    query_table_definition object
    The definition for a Query Table widget.
    query_value_definition object
    The definition for a Query Value widget.
    run_workflow_definition object
    The definition for a Run Workflow widget.
    sankey_definition object
    The definition for a Sankey diagram widget.
    scatterplot_definition object
    The definition for a Scatterplot widget.
    service_level_objective_definition object
    The definition for a Service Level Objective widget.
    servicemap_definition object
    The definition for a Service Map widget.
    slo_list_definition object
    The definition for an SLO (Service Level Objective) List widget.
    sunburst_definition object
    The definition for a Sunburst widget.
    timeseries_definition object
    The definition for a Timeseries widget.
    toplist_definition object
    The definition for a Toplist widget.
    topology_map_definition object
    The definition for a Topology Map widget.
    trace_service_definition object
    The definition for a Trace Service widget.
    treemap_definition object
    The definition for a Treemap widget.
    widget_layout object
    The layout of the widget on a 'free' dashboard.
    wildcard_definition object
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    alertGraphDefinition PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinition
    The definition for a Alert Graph widget.
    alertValueDefinition PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinition
    The definition for a Alert Value widget.
    barChartDefinition PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinition
    The definition for a Bar Chart widget.
    changeDefinition PowerpackV2WidgetGroupDefinitionWidgetChangeDefinition
    The definition for a Change widget.
    checkStatusDefinition PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinition
    The definition for a Check Status widget.
    distributionDefinition PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinition
    The definition for a Distribution widget.
    eventStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinition
    The definition for a Event Stream widget.
    eventTimelineDefinition PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinition
    The definition for a Event Timeline widget.
    freeTextDefinition PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinition
    The definition for a Free Text widget.
    funnelDefinition PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinition
    The definition for a Funnel widget.
    geomapDefinition PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinition
    The definition for a Geomap widget.
    heatmapDefinition PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinition
    The definition for a Heatmap widget.
    hostmapDefinition PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinition
    The definition for a Hostmap widget.
    id Integer
    The ID of the widget.
    iframeDefinition PowerpackV2WidgetGroupDefinitionWidgetIframeDefinition
    The definition for an Iframe widget.
    imageDefinition PowerpackV2WidgetGroupDefinitionWidgetImageDefinition
    The definition for an Image widget
    listStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinition
    The definition for a List Stream widget.
    logStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinition
    The definition for an Log Stream widget.
    manageStatusDefinition PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinition
    The definition for an Manage Status widget.
    noteDefinition PowerpackV2WidgetGroupDefinitionWidgetNoteDefinition
    The definition for a Note widget.
    pointPlotDefinition PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinition
    The definition for a Point Plot widget.
    queryTableDefinition PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinition
    The definition for a Query Table widget.
    queryValueDefinition PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinition
    The definition for a Query Value widget.
    runWorkflowDefinition PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinition
    The definition for a Run Workflow widget.
    sankeyDefinition PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinition
    The definition for a Sankey diagram widget.
    scatterplotDefinition PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinition
    The definition for a Scatterplot widget.
    serviceLevelObjectiveDefinition PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinition
    The definition for a Service Level Objective widget.
    servicemapDefinition PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinition
    The definition for a Service Map widget.
    sloListDefinition PowerpackV2WidgetGroupDefinitionWidgetSloListDefinition
    The definition for an SLO (Service Level Objective) List widget.
    sunburstDefinition PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinition
    The definition for a Sunburst widget.
    timeseriesDefinition PowerpackV2WidgetGroupDefinitionWidgetTimeseriesDefinition
    The definition for a Timeseries widget.
    toplistDefinition PowerpackV2WidgetGroupDefinitionWidgetToplistDefinition
    The definition for a Toplist widget.
    topologyMapDefinition PowerpackV2WidgetGroupDefinitionWidgetTopologyMapDefinition
    The definition for a Topology Map widget.
    traceServiceDefinition PowerpackV2WidgetGroupDefinitionWidgetTraceServiceDefinition
    The definition for a Trace Service widget.
    treemapDefinition PowerpackV2WidgetGroupDefinitionWidgetTreemapDefinition
    The definition for a Treemap widget.
    widgetLayout PowerpackV2WidgetGroupDefinitionWidgetWidgetLayout
    The layout of the widget on a 'free' dashboard.
    wildcardDefinition PowerpackV2WidgetGroupDefinitionWidgetWildcardDefinition
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    alertGraphDefinition PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinition
    The definition for a Alert Graph widget.
    alertValueDefinition PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinition
    The definition for a Alert Value widget.
    barChartDefinition PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinition
    The definition for a Bar Chart widget.
    changeDefinition PowerpackV2WidgetGroupDefinitionWidgetChangeDefinition
    The definition for a Change widget.
    checkStatusDefinition PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinition
    The definition for a Check Status widget.
    distributionDefinition PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinition
    The definition for a Distribution widget.
    eventStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinition
    The definition for a Event Stream widget.
    eventTimelineDefinition PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinition
    The definition for a Event Timeline widget.
    freeTextDefinition PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinition
    The definition for a Free Text widget.
    funnelDefinition PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinition
    The definition for a Funnel widget.
    geomapDefinition PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinition
    The definition for a Geomap widget.
    heatmapDefinition PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinition
    The definition for a Heatmap widget.
    hostmapDefinition PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinition
    The definition for a Hostmap widget.
    id number
    The ID of the widget.
    iframeDefinition PowerpackV2WidgetGroupDefinitionWidgetIframeDefinition
    The definition for an Iframe widget.
    imageDefinition PowerpackV2WidgetGroupDefinitionWidgetImageDefinition
    The definition for an Image widget
    listStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinition
    The definition for a List Stream widget.
    logStreamDefinition PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinition
    The definition for an Log Stream widget.
    manageStatusDefinition PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinition
    The definition for an Manage Status widget.
    noteDefinition PowerpackV2WidgetGroupDefinitionWidgetNoteDefinition
    The definition for a Note widget.
    pointPlotDefinition PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinition
    The definition for a Point Plot widget.
    queryTableDefinition PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinition
    The definition for a Query Table widget.
    queryValueDefinition PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinition
    The definition for a Query Value widget.
    runWorkflowDefinition PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinition
    The definition for a Run Workflow widget.
    sankeyDefinition PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinition
    The definition for a Sankey diagram widget.
    scatterplotDefinition PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinition
    The definition for a Scatterplot widget.
    serviceLevelObjectiveDefinition PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinition
    The definition for a Service Level Objective widget.
    servicemapDefinition PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinition
    The definition for a Service Map widget.
    sloListDefinition PowerpackV2WidgetGroupDefinitionWidgetSloListDefinition
    The definition for an SLO (Service Level Objective) List widget.
    sunburstDefinition PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinition
    The definition for a Sunburst widget.
    timeseriesDefinition PowerpackV2WidgetGroupDefinitionWidgetTimeseriesDefinition
    The definition for a Timeseries widget.
    toplistDefinition PowerpackV2WidgetGroupDefinitionWidgetToplistDefinition
    The definition for a Toplist widget.
    topologyMapDefinition PowerpackV2WidgetGroupDefinitionWidgetTopologyMapDefinition
    The definition for a Topology Map widget.
    traceServiceDefinition PowerpackV2WidgetGroupDefinitionWidgetTraceServiceDefinition
    The definition for a Trace Service widget.
    treemapDefinition PowerpackV2WidgetGroupDefinitionWidgetTreemapDefinition
    The definition for a Treemap widget.
    widgetLayout PowerpackV2WidgetGroupDefinitionWidgetWidgetLayout
    The layout of the widget on a 'free' dashboard.
    wildcardDefinition PowerpackV2WidgetGroupDefinitionWidgetWildcardDefinition
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    alert_graph_definition PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinition
    The definition for a Alert Graph widget.
    alert_value_definition PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinition
    The definition for a Alert Value widget.
    bar_chart_definition PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinition
    The definition for a Bar Chart widget.
    change_definition PowerpackV2WidgetGroupDefinitionWidgetChangeDefinition
    The definition for a Change widget.
    check_status_definition PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinition
    The definition for a Check Status widget.
    distribution_definition PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinition
    The definition for a Distribution widget.
    event_stream_definition PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinition
    The definition for a Event Stream widget.
    event_timeline_definition PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinition
    The definition for a Event Timeline widget.
    free_text_definition PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinition
    The definition for a Free Text widget.
    funnel_definition PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinition
    The definition for a Funnel widget.
    geomap_definition PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinition
    The definition for a Geomap widget.
    heatmap_definition PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinition
    The definition for a Heatmap widget.
    hostmap_definition PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinition
    The definition for a Hostmap widget.
    id int
    The ID of the widget.
    iframe_definition PowerpackV2WidgetGroupDefinitionWidgetIframeDefinition
    The definition for an Iframe widget.
    image_definition PowerpackV2WidgetGroupDefinitionWidgetImageDefinition
    The definition for an Image widget
    list_stream_definition PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinition
    The definition for a List Stream widget.
    log_stream_definition PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinition
    The definition for an Log Stream widget.
    manage_status_definition PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinition
    The definition for an Manage Status widget.
    note_definition PowerpackV2WidgetGroupDefinitionWidgetNoteDefinition
    The definition for a Note widget.
    point_plot_definition PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinition
    The definition for a Point Plot widget.
    query_table_definition PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinition
    The definition for a Query Table widget.
    query_value_definition PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinition
    The definition for a Query Value widget.
    run_workflow_definition PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinition
    The definition for a Run Workflow widget.
    sankey_definition PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinition
    The definition for a Sankey diagram widget.
    scatterplot_definition PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinition
    The definition for a Scatterplot widget.
    service_level_objective_definition PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinition
    The definition for a Service Level Objective widget.
    servicemap_definition PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinition
    The definition for a Service Map widget.
    slo_list_definition PowerpackV2WidgetGroupDefinitionWidgetSloListDefinition
    The definition for an SLO (Service Level Objective) List widget.
    sunburst_definition PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinition
    The definition for a Sunburst widget.
    timeseries_definition PowerpackV2WidgetGroupDefinitionWidgetTimeseriesDefinition
    The definition for a Timeseries widget.
    toplist_definition PowerpackV2WidgetGroupDefinitionWidgetToplistDefinition
    The definition for a Toplist widget.
    topology_map_definition PowerpackV2WidgetGroupDefinitionWidgetTopologyMapDefinition
    The definition for a Topology Map widget.
    trace_service_definition PowerpackV2WidgetGroupDefinitionWidgetTraceServiceDefinition
    The definition for a Trace Service widget.
    treemap_definition PowerpackV2WidgetGroupDefinitionWidgetTreemapDefinition
    The definition for a Treemap widget.
    widget_layout PowerpackV2WidgetGroupDefinitionWidgetWidgetLayout
    The layout of the widget on a 'free' dashboard.
    wildcard_definition PowerpackV2WidgetGroupDefinitionWidgetWildcardDefinition
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
    alertGraphDefinition Property Map
    The definition for a Alert Graph widget.
    alertValueDefinition Property Map
    The definition for a Alert Value widget.
    barChartDefinition Property Map
    The definition for a Bar Chart widget.
    changeDefinition Property Map
    The definition for a Change widget.
    checkStatusDefinition Property Map
    The definition for a Check Status widget.
    distributionDefinition Property Map
    The definition for a Distribution widget.
    eventStreamDefinition Property Map
    The definition for a Event Stream widget.
    eventTimelineDefinition Property Map
    The definition for a Event Timeline widget.
    freeTextDefinition Property Map
    The definition for a Free Text widget.
    funnelDefinition Property Map
    The definition for a Funnel widget.
    geomapDefinition Property Map
    The definition for a Geomap widget.
    heatmapDefinition Property Map
    The definition for a Heatmap widget.
    hostmapDefinition Property Map
    The definition for a Hostmap widget.
    id Number
    The ID of the widget.
    iframeDefinition Property Map
    The definition for an Iframe widget.
    imageDefinition Property Map
    The definition for an Image widget
    listStreamDefinition Property Map
    The definition for a List Stream widget.
    logStreamDefinition Property Map
    The definition for an Log Stream widget.
    manageStatusDefinition Property Map
    The definition for an Manage Status widget.
    noteDefinition Property Map
    The definition for a Note widget.
    pointPlotDefinition Property Map
    The definition for a Point Plot widget.
    queryTableDefinition Property Map
    The definition for a Query Table widget.
    queryValueDefinition Property Map
    The definition for a Query Value widget.
    runWorkflowDefinition Property Map
    The definition for a Run Workflow widget.
    sankeyDefinition Property Map
    The definition for a Sankey diagram widget.
    scatterplotDefinition Property Map
    The definition for a Scatterplot widget.
    serviceLevelObjectiveDefinition Property Map
    The definition for a Service Level Objective widget.
    servicemapDefinition Property Map
    The definition for a Service Map widget.
    sloListDefinition Property Map
    The definition for an SLO (Service Level Objective) List widget.
    sunburstDefinition Property Map
    The definition for a Sunburst widget.
    timeseriesDefinition Property Map
    The definition for a Timeseries widget.
    toplistDefinition Property Map
    The definition for a Toplist widget.
    topologyMapDefinition Property Map
    The definition for a Topology Map widget.
    traceServiceDefinition Property Map
    The definition for a Trace Service widget.
    treemapDefinition Property Map
    The definition for a Treemap widget.
    widgetLayout Property Map
    The layout of the widget on a 'free' dashboard.
    wildcardDefinition Property Map
    The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.

    PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinition, PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionArgs

    AlertId string
    The ID of the monitor used by the widget.
    VizType string
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    AlertId string
    The ID of the monitor used by the widget.
    VizType string
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    alert_id string
    The ID of the monitor used by the widget.
    viz_type string
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    alertId String
    The ID of the monitor used by the widget.
    vizType String
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    alertId string
    The ID of the monitor used by the widget.
    vizType string
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    alert_id str
    The ID of the monitor used by the widget.
    viz_type str
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    alertId String
    The ID of the monitor used by the widget.
    vizType String
    Whether to display the Alert Graph as a timeseries or a top list. Valid values are timeseries, toplist.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinition, PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionArgs

    AlertId string
    The ID of the monitor used by the widget.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Precision int
    The precision to use when displaying the value. Use * for maximum precision.
    TextAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    Time PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Unit string
    The unit for the value displayed in the widget.
    AlertId string
    The ID of the monitor used by the widget.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Precision int
    The precision to use when displaying the value. Use * for maximum precision.
    TextAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    Time PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Unit string
    The unit for the value displayed in the widget.
    alert_id string
    The ID of the monitor used by the widget.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision number
    The precision to use when displaying the value. Use * for maximum precision.
    text_align string
    The alignment of the text in the widget. Valid values are center, left, right.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    unit string
    The unit for the value displayed in the widget.
    alertId String
    The ID of the monitor used by the widget.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision Integer
    The precision to use when displaying the value. Use * for maximum precision.
    textAlign String
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    unit String
    The unit for the value displayed in the widget.
    alertId string
    The ID of the monitor used by the widget.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision number
    The precision to use when displaying the value. Use * for maximum precision.
    textAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    unit string
    The unit for the value displayed in the widget.
    alert_id str
    The ID of the monitor used by the widget.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision int
    The precision to use when displaying the value. Use * for maximum precision.
    text_align str
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    unit str
    The unit for the value displayed in the widget.
    alertId String
    The ID of the monitor used by the widget.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision Number
    The precision to use when displaying the value. Use * for maximum precision.
    textAlign String
    The alignment of the text in the widget. Valid values are center, left, right.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    unit String
    The unit for the value displayed in the widget.

    PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinition, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionArgs

    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Request PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    Style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyle
    Style customization for the bar chart widget.
    Time PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Request PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    Style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyle
    Style customization for the bar chart widget.
    Time PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request object
    A nested block describing the request to use when displaying the widget.
    style object
    Style customization for the bar chart widget.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyle
    Style customization for the bar chart widget.
    time PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    customLinks PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyle
    Style customization for the bar chart widget.
    time PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyle
    Style customization for the bar chart widget.
    time PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request Property Map
    A nested block describing the request to use when displaying the widget.
    style Property Map
    Style customization for the bar chart widget.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestArgs

    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormula>
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    Style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyle
    Define request for the widget's style.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestConditionalFormat
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    Formulas []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormula
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    Style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyle
    Define request for the widget's style.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    formulas list(object)
    A list of formulas to use in the widget.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort object
    The controls for sorting the widget. Only applicable for formula-style requests.
    style object
    Define request for the widget's style.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    formulas List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormula>
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyle
    Define request for the widget's style.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    formulas PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormula[]
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyle
    Define request for the widget's style.
    apm_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormula]
    A list of formulas to use in the widget.
    log_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyle
    Define request for the widget's style.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
    formulas List<Property Map>
    A list of formulas to use in the widget.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort Property Map
    The controls for sorting the widget. Only applicable for formula-style requests.
    style Property Map
    Define request for the widget's style.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSort, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortArgs

    Count int
    The number of items to limit the widget to.
    OrderBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderBy>
    The list of items to sort the widget by.
    Count int
    The number of items to limit the widget to.
    OrderBies []PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderBy
    The list of items to sort the widget by.
    count number
    The number of items to limit the widget to.
    order_bies list(object)
    The list of items to sort the widget by.
    count Integer
    The number of items to limit the widget to.
    orderBies List<PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderBy>
    The list of items to sort the widget by.
    count number
    The number of items to limit the widget to.
    orderBies PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderBy[]
    The list of items to sort the widget by.
    count int
    The number of items to limit the widget to.
    order_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderBy]
    The list of items to sort the widget by.
    count Number
    The number of items to limit the widget to.
    orderBies List<Property Map>
    The list of items to sort the widget by.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderBy, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByArgs

    formula_sort object
    Sort by a formula value.
    group_sort object
    Sort by a group (tag) value.
    formulaSort Property Map
    Sort by a formula value.
    groupSort Property Map
    Sort by a group (tag) value.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByFormulaSort, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByFormulaSortArgs

    Index int
    The index of the formula to sort by.
    Order string
    Widget sorting direction. Valid values are asc, desc.
    Index int
    The index of the formula to sort by.
    Order string
    Widget sorting direction. Valid values are asc, desc.
    index number
    The index of the formula to sort by.
    order string
    Widget sorting direction. Valid values are asc, desc.
    index Integer
    The index of the formula to sort by.
    order String
    Widget sorting direction. Valid values are asc, desc.
    index number
    The index of the formula to sort by.
    order string
    Widget sorting direction. Valid values are asc, desc.
    index int
    The index of the formula to sort by.
    order str
    Widget sorting direction. Valid values are asc, desc.
    index Number
    The index of the formula to sort by.
    order String
    Widget sorting direction. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByGroupSort, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByGroupSortArgs

    Name string
    The name of the group tag to sort by.
    Order string
    Widget sorting direction. Valid values are asc, desc.
    Name string
    The name of the group tag to sort by.
    Order string
    Widget sorting direction. Valid values are asc, desc.
    name string
    The name of the group tag to sort by.
    order string
    Widget sorting direction. Valid values are asc, desc.
    name String
    The name of the group tag to sort by.
    order String
    Widget sorting direction. Valid values are asc, desc.
    name string
    The name of the group tag to sort by.
    order string
    Widget sorting direction. Valid values are asc, desc.
    name str
    The name of the group tag to sort by.
    order str
    Widget sorting direction. Valid values are asc, desc.
    name String
    The name of the group tag to sort by.
    order String
    Widget sorting direction. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyle, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyleArgs

    OrderBy string
    How to order series. Valid values are tags, values.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    OrderBy string
    How to order series. Valid values are tags, values.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    order_by string
    How to order series. Valid values are tags, values.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy String
    How to order series. Valid values are tags, values.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy string
    How to order series. Valid values are tags, values.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    order_by str
    How to order series. Valid values are tags, values.
    palette str
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy String
    How to order series. Valid values are tags, values.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyle, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleArgs

    Display PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplay
    Bar chart display options.
    Palette string
    Color palette for the bar chart.
    Scaling string
    Scaling definition for the bar chart. Valid values are absolute, relative.
    Display PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplay
    Bar chart display options.
    Palette string
    Color palette for the bar chart.
    Scaling string
    Scaling definition for the bar chart. Valid values are absolute, relative.
    display object
    Bar chart display options.
    palette string
    Color palette for the bar chart.
    scaling string
    Scaling definition for the bar chart. Valid values are absolute, relative.
    display PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplay
    Bar chart display options.
    palette String
    Color palette for the bar chart.
    scaling String
    Scaling definition for the bar chart. Valid values are absolute, relative.
    display PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplay
    Bar chart display options.
    palette string
    Color palette for the bar chart.
    scaling string
    Scaling definition for the bar chart. Valid values are absolute, relative.
    display PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplay
    Bar chart display options.
    palette str
    Color palette for the bar chart.
    scaling str
    Scaling definition for the bar chart. Valid values are absolute, relative.
    display Property Map
    Bar chart display options.
    palette String
    Color palette for the bar chart.
    scaling String
    Scaling definition for the bar chart. Valid values are absolute, relative.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplay, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplayArgs

    flat object
    Flat display mode with no stacking.
    stacked object
    Stacked display mode.
    flat Property Map
    Flat display mode with no stacking.
    stacked Property Map
    Stacked display mode.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplayStacked, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplayStackedArgs

    Legend string
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    Legend string
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    legend string
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    legend String
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    legend string
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    legend str
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.
    legend String
    Legend display behavior for stacked bars. Valid values are automatic, inline, none.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinition, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionArgs

    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    Time PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    Time PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests list(object)
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    time PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    customLinks PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequest[]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    time PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequest]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    time PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestArgs

    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ChangeType string
    Whether to show absolute or relative change. Valid values are absolute, relative.
    CompareTo string
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormula>
    A list of formulas to use in the widget.
    IncreaseGood bool
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    OrderBy string
    What to order by. Valid values are change, name, present, past.
    OrderDir string
    Widget sorting method. Valid values are asc, desc.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ShowPresent bool
    If set to true, displays the current value.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ChangeType string
    Whether to show absolute or relative change. Valid values are absolute, relative.
    CompareTo string
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    Formulas []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormula
    A list of formulas to use in the widget.
    IncreaseGood bool
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    OrderBy string
    What to order by. Valid values are change, name, present, past.
    OrderDir string
    Widget sorting method. Valid values are asc, desc.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ShowPresent bool
    If set to true, displays the current value.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    change_type string
    Whether to show absolute or relative change. Valid values are absolute, relative.
    compare_to string
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    formulas list(object)
    A list of formulas to use in the widget.
    increase_good bool
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    order_by string
    What to order by. Valid values are change, name, present, past.
    order_dir string
    Widget sorting method. Valid values are asc, desc.
    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    show_present bool
    If set to true, displays the current value.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    changeType String
    Whether to show absolute or relative change. Valid values are absolute, relative.
    compareTo String
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    formulas List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormula>
    A list of formulas to use in the widget.
    increaseGood Boolean
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    logQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    orderBy String
    What to order by. Valid values are change, name, present, past.
    orderDir String
    Widget sorting method. Valid values are asc, desc.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    showPresent Boolean
    If set to true, displays the current value.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    changeType string
    Whether to show absolute or relative change. Valid values are absolute, relative.
    compareTo string
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    formulas PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormula[]
    A list of formulas to use in the widget.
    increaseGood boolean
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    logQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    orderBy string
    What to order by. Valid values are change, name, present, past.
    orderDir string
    Widget sorting method. Valid values are asc, desc.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    showPresent boolean
    If set to true, displays the current value.
    apm_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    change_type str
    Whether to show absolute or relative change. Valid values are absolute, relative.
    compare_to str
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormula]
    A list of formulas to use in the widget.
    increase_good bool
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    log_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    order_by str
    What to order by. Valid values are change, name, present, past.
    order_dir str
    Widget sorting method. Valid values are asc, desc.
    process_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    show_present bool
    If set to true, displays the current value.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    changeType String
    Whether to show absolute or relative change. Valid values are absolute, relative.
    compareTo String
    Choose from when to compare current data to. Valid values are hourBefore, dayBefore, weekBefore, monthBefore.
    formulas List<Property Map>
    A list of formulas to use in the widget.
    increaseGood Boolean
    A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    orderBy String
    What to order by. Valid values are change, name, present, past.
    orderDir String
    Widget sorting method. Valid values are asc, desc.
    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    showPresent Boolean
    If set to true, displays the current value.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinition, PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionArgs

    Check string
    Name of the check to use in the widget.
    Grouping string
    The kind of grouping to use. Valid values are check, cluster.
    Description string
    The description of the widget.
    Group string
    Group reporting a single check.
    GroupBies List<string>
    When grouping = "cluster", indicates a list of tags to use for grouping.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Tags List<string>
    A list of tags used to filter the groups reporting a cluster check.
    Time PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Check string
    Name of the check to use in the widget.
    Grouping string
    The kind of grouping to use. Valid values are check, cluster.
    Description string
    The description of the widget.
    Group string
    Group reporting a single check.
    GroupBies []string
    When grouping = "cluster", indicates a list of tags to use for grouping.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Tags []string
    A list of tags used to filter the groups reporting a cluster check.
    Time PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    check string
    Name of the check to use in the widget.
    grouping string
    The kind of grouping to use. Valid values are check, cluster.
    description string
    The description of the widget.
    group string
    Group reporting a single check.
    group_bies list(string)
    When grouping = "cluster", indicates a list of tags to use for grouping.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags list(string)
    A list of tags used to filter the groups reporting a cluster check.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    check String
    Name of the check to use in the widget.
    grouping String
    The kind of grouping to use. Valid values are check, cluster.
    description String
    The description of the widget.
    group String
    Group reporting a single check.
    groupBies List<String>
    When grouping = "cluster", indicates a list of tags to use for grouping.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags List<String>
    A list of tags used to filter the groups reporting a cluster check.
    time PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    check string
    Name of the check to use in the widget.
    grouping string
    The kind of grouping to use. Valid values are check, cluster.
    description string
    The description of the widget.
    group string
    Group reporting a single check.
    groupBies string[]
    When grouping = "cluster", indicates a list of tags to use for grouping.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags string[]
    A list of tags used to filter the groups reporting a cluster check.
    time PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    check str
    Name of the check to use in the widget.
    grouping str
    The kind of grouping to use. Valid values are check, cluster.
    description str
    The description of the widget.
    group str
    Group reporting a single check.
    group_bies Sequence[str]
    When grouping = "cluster", indicates a list of tags to use for grouping.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags Sequence[str]
    A list of tags used to filter the groups reporting a cluster check.
    time PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    check String
    Name of the check to use in the widget.
    grouping String
    The kind of grouping to use. Valid values are check, cluster.
    description String
    The description of the widget.
    group String
    Group reporting a single check.
    groupBies List<String>
    When grouping = "cluster", indicates a list of tags to use for grouping.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags List<String>
    A list of tags used to filter the groups reporting a cluster check.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinition, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionArgs

    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LegendSize string
    The size of the legend displayed in the widget.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Markers List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionMarker>
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    Requests List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    ShowLegend bool
    Whether or not to show the legend on this widget.
    Time PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Xaxis PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    Yaxis PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LegendSize string
    The size of the legend displayed in the widget.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Markers []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionMarker
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    Requests []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    ShowLegend bool
    Whether or not to show the legend on this widget.
    Time PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Xaxis PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    Yaxis PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend_size string
    The size of the legend displayed in the widget.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers list(object)
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    requests list(object)
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    show_legend bool
    Whether or not to show the legend on this widget.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    xaxis object
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis object
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize String
    The size of the legend displayed in the widget.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionMarker>
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    requests List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    showLegend Boolean
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize string
    The size of the legend displayed in the widget.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionMarker[]
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    requests PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequest[]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    showLegend boolean
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend_size str
    The size of the legend displayed in the widget.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionMarker]
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequest]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    show_legend bool
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize String
    The size of the legend displayed in the widget.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers List<Property Map>
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given distributionDefinition block.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    showLegend Boolean
    Whether or not to show the legend on this widget.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    xaxis Property Map
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis Property Map
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionMarker, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionMarkerArgs

    Value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    DisplayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    Label string
    Label to display over the marker.
    Time string
    Timestamp for the marker position.
    Value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    DisplayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    Label string
    Label to display over the marker.
    Time string
    Timestamp for the marker position.
    value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    display_type string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label string
    Label to display over the marker.
    time string
    Timestamp for the marker position.
    value String
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType String
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label String
    Label to display over the marker.
    time String
    Timestamp for the marker position.
    value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label string
    Label to display over the marker.
    time string
    Timestamp for the marker position.
    value str
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    display_type str
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label str
    Label to display over the marker.
    time str
    Timestamp for the marker position.
    value String
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType String
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label String
    Label to display over the marker.
    time String
    Timestamp for the marker position.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestArgs

    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ApmStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQuery
    The APM stats query to use in the widget.
    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormula>
    A list of formulas to use in the widget.
    HistogramQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQuery
    Singular query block for histogram-mode distribution requests.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuery>
    A list of queries to use in the widget.
    RequestType string
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Style PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ApmStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQuery
    The APM stats query to use in the widget.
    Formulas []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormula
    A list of formulas to use in the widget.
    HistogramQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQuery
    Singular query block for histogram-mode distribution requests.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuery
    A list of queries to use in the widget.
    RequestType string
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Style PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apm_stats_query object
    The APM stats query to use in the widget.
    formulas list(object)
    A list of formulas to use in the widget.
    histogram_query object
    Singular query block for histogram-mode distribution requests.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    request_type string
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style object
    The style of the widget graph. One nested block is allowed using the structure below.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQuery
    The APM stats query to use in the widget.
    formulas List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormula>
    A list of formulas to use in the widget.
    histogramQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQuery
    Singular query block for histogram-mode distribution requests.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuery>
    A list of queries to use in the widget.
    requestType String
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQuery
    The APM stats query to use in the widget.
    formulas PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormula[]
    A list of formulas to use in the widget.
    histogramQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQuery
    Singular query block for histogram-mode distribution requests.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuery[]
    A list of queries to use in the widget.
    requestType string
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apm_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apm_stats_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQuery
    The APM stats query to use in the widget.
    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormula]
    A list of formulas to use in the widget.
    histogram_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQuery
    Singular query block for histogram-mode distribution requests.
    log_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuery]
    A list of queries to use in the widget.
    request_type str
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmStatsQuery Property Map
    The APM stats query to use in the widget.
    formulas List<Property Map>
    A list of formulas to use in the widget.
    histogramQuery Property Map
    Singular query block for histogram-mode distribution requests.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    requestType String
    Set to 'histogram' for distribution-of-point-values requests. Valid values are histogram.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style Property Map
    The style of the widget graph. One nested block is allowed using the structure below.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryArgs

    Env string
    The environment name.
    Name string
    The operation name associated with the service.
    PrimaryTag string
    The organization's host group name and value.
    RowType string
    The level of detail for the request. Valid values are service, resource, span.
    Service string
    The service name.
    Columns List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumn>
    Column properties used by the front end for display.
    Resource string
    The resource name.
    Env string
    The environment name.
    Name string
    The operation name associated with the service.
    PrimaryTag string
    The organization's host group name and value.
    RowType string
    The level of detail for the request. Valid values are service, resource, span.
    Service string
    The service name.
    Columns []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumn
    Column properties used by the front end for display.
    Resource string
    The resource name.
    env string
    The environment name.
    name string
    The operation name associated with the service.
    primary_tag string
    The organization's host group name and value.
    row_type string
    The level of detail for the request. Valid values are service, resource, span.
    service string
    The service name.
    columns list(object)
    Column properties used by the front end for display.
    resource string
    The resource name.
    env String
    The environment name.
    name String
    The operation name associated with the service.
    primaryTag String
    The organization's host group name and value.
    rowType String
    The level of detail for the request. Valid values are service, resource, span.
    service String
    The service name.
    columns List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumn>
    Column properties used by the front end for display.
    resource String
    The resource name.
    env string
    The environment name.
    name string
    The operation name associated with the service.
    primaryTag string
    The organization's host group name and value.
    rowType string
    The level of detail for the request. Valid values are service, resource, span.
    service string
    The service name.
    columns PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumn[]
    Column properties used by the front end for display.
    resource string
    The resource name.
    env str
    The environment name.
    name str
    The operation name associated with the service.
    primary_tag str
    The organization's host group name and value.
    row_type str
    The level of detail for the request. Valid values are service, resource, span.
    service str
    The service name.
    columns Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumn]
    Column properties used by the front end for display.
    resource str
    The resource name.
    env String
    The environment name.
    name String
    The operation name associated with the service.
    primaryTag String
    The organization's host group name and value.
    rowType String
    The level of detail for the request. Valid values are service, resource, span.
    service String
    The service name.
    columns List<Property Map>
    Column properties used by the front end for display.
    resource String
    The resource name.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumn, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumnArgs

    Name string
    The column name.
    Alias string
    A user-assigned alias for the column.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Name string
    The column name.
    Alias string
    A user-assigned alias for the column.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    name string
    The column name.
    alias string
    A user-assigned alias for the column.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order string
    Widget sorting methods. Valid values are asc, desc.
    name String
    The column name.
    alias String
    A user-assigned alias for the column.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order String
    Widget sorting methods. Valid values are asc, desc.
    name string
    The column name.
    alias string
    A user-assigned alias for the column.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order string
    Widget sorting methods. Valid values are asc, desc.
    name str
    The column name.
    alias str
    A user-assigned alias for the column.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order str
    Widget sorting methods. Valid values are asc, desc.
    name String
    The column name.
    alias String
    A user-assigned alias for the column.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order String
    Widget sorting methods. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryArgs

    apm_resource_stats_query object
    APM resource stats query for histogram-mode distribution.
    event_query object
    Event query for histogram-mode distribution.
    metric_query object
    Metric query for histogram-mode distribution.
    apmResourceStatsQuery Property Map
    APM resource stats query for histogram-mode distribution.
    eventQuery Property Map
    Event query for histogram-mode distribution.
    metricQuery Property Map
    Metric query for histogram-mode distribution.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestStyle, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestStyleArgs

    OrderBy string
    How to order series. Valid values are tags, values.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    OrderBy string
    How to order series. Valid values are tags, values.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    order_by string
    How to order series. Valid values are tags, values.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy String
    How to order series. Valid values are tags, values.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy string
    How to order series. Valid values are tags, values.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    order_by str
    How to order series. Valid values are tags, values.
    palette str
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy String
    How to order series. Valid values are tags, values.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxis, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxisArgs

    IncludeZero bool
    True includes zero.
    Max string
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    Min string
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    NumBuckets int
    Number of value buckets to target, also known as the resolution of the value bins.
    Scale string
    Specifies the scale type. Possible values are linear.
    IncludeZero bool
    True includes zero.
    Max string
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    Min string
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    NumBuckets int
    Number of value buckets to target, also known as the resolution of the value bins.
    Scale string
    Specifies the scale type. Possible values are linear.
    include_zero bool
    True includes zero.
    max string
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    min string
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    num_buckets number
    Number of value buckets to target, also known as the resolution of the value bins.
    scale string
    Specifies the scale type. Possible values are linear.
    includeZero Boolean
    True includes zero.
    max String
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    min String
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    numBuckets Integer
    Number of value buckets to target, also known as the resolution of the value bins.
    scale String
    Specifies the scale type. Possible values are linear.
    includeZero boolean
    True includes zero.
    max string
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    min string
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    numBuckets number
    Number of value buckets to target, also known as the resolution of the value bins.
    scale string
    Specifies the scale type. Possible values are linear.
    include_zero bool
    True includes zero.
    max str
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    min str
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    num_buckets int
    Number of value buckets to target, also known as the resolution of the value bins.
    scale str
    Specifies the scale type. Possible values are linear.
    includeZero Boolean
    True includes zero.
    max String
    Specifies maximum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    min String
    Specifies minimum value to show on the x-axis. It takes a number, percentile (p90 === 90th percentile), or auto for default behavior.
    numBuckets Number
    Number of value buckets to target, also known as the resolution of the value bins.
    scale String
    Specifies the scale type. Possible values are linear.

    PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxis, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxisArgs

    IncludeZero bool
    True includes zero.
    Label string
    The label of the axis to display on the graph.
    Max string
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    Min string
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    Scale string
    Specifies the scale type. Possible values are linear or log.
    IncludeZero bool
    True includes zero.
    Label string
    The label of the axis to display on the graph.
    Max string
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    Min string
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    Scale string
    Specifies the scale type. Possible values are linear or log.
    include_zero bool
    True includes zero.
    label string
    The label of the axis to display on the graph.
    max string
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    min string
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    scale string
    Specifies the scale type. Possible values are linear or log.
    includeZero Boolean
    True includes zero.
    label String
    The label of the axis to display on the graph.
    max String
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    min String
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    scale String
    Specifies the scale type. Possible values are linear or log.
    includeZero boolean
    True includes zero.
    label string
    The label of the axis to display on the graph.
    max string
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    min string
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    scale string
    Specifies the scale type. Possible values are linear or log.
    include_zero bool
    True includes zero.
    label str
    The label of the axis to display on the graph.
    max str
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    min str
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    scale str
    Specifies the scale type. Possible values are linear or log.
    includeZero Boolean
    True includes zero.
    label String
    The label of the axis to display on the graph.
    max String
    Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
    min String
    Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
    scale String
    Specifies the scale type. Possible values are linear or log.

    PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinition, PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionArgs

    Query string
    Query to filter the event stream with.
    Description string
    The description of the widget.
    EventSize string
    Size to use to display an event. Valid values are s, l.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TagsExecution string
    The execution method for multi-value filters, options: and or or.
    Time PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Query string
    Query to filter the event stream with.
    Description string
    The description of the widget.
    EventSize string
    Size to use to display an event. Valid values are s, l.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TagsExecution string
    The execution method for multi-value filters, options: and or or.
    Time PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    query string
    Query to filter the event stream with.
    description string
    The description of the widget.
    event_size string
    Size to use to display an event. Valid values are s, l.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags_execution string
    The execution method for multi-value filters, options: and or or.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    query String
    Query to filter the event stream with.
    description String
    The description of the widget.
    eventSize String
    Size to use to display an event. Valid values are s, l.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution String
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    query string
    Query to filter the event stream with.
    description string
    The description of the widget.
    eventSize string
    Size to use to display an event. Valid values are s, l.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution string
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    query str
    Query to filter the event stream with.
    description str
    The description of the widget.
    event_size str
    Size to use to display an event. Valid values are s, l.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags_execution str
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    query String
    Query to filter the event stream with.
    description String
    The description of the widget.
    eventSize String
    Size to use to display an event. Valid values are s, l.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution String
    The execution method for multi-value filters, options: and or or.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinition, PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionArgs

    Query string
    Query to filter the event timeline with.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TagsExecution string
    The execution method for multi-value filters, options: and or or.
    Time PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Query string
    Query to filter the event timeline with.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TagsExecution string
    The execution method for multi-value filters, options: and or or.
    Time PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    query string
    Query to filter the event timeline with.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags_execution string
    The execution method for multi-value filters, options: and or or.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    query String
    Query to filter the event timeline with.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution String
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    query string
    Query to filter the event timeline with.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution string
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    query str
    Query to filter the event timeline with.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tags_execution str
    The execution method for multi-value filters, options: and or or.
    time PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    query String
    Query to filter the event timeline with.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    tagsExecution String
    The execution method for multi-value filters, options: and or or.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinition, PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionArgs

    Text string
    The text to display in the widget.
    BackgroundColor string
    The background color of the text widget.
    Color string
    The color of the text in the widget.
    Description string
    The description of the widget.
    FontSize string
    The size of the text in the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TextAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    Time PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Text string
    The text to display in the widget.
    BackgroundColor string
    The background color of the text widget.
    Color string
    The color of the text in the widget.
    Description string
    The description of the widget.
    FontSize string
    The size of the text in the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    TextAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    Time PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    text string
    The text to display in the widget.
    background_color string
    The background color of the text widget.
    color string
    The color of the text in the widget.
    description string
    The description of the widget.
    font_size string
    The size of the text in the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    text_align string
    The alignment of the text in the widget. Valid values are center, left, right.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    text String
    The text to display in the widget.
    backgroundColor String
    The background color of the text widget.
    color String
    The color of the text in the widget.
    description String
    The description of the widget.
    fontSize String
    The size of the text in the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    textAlign String
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    text string
    The text to display in the widget.
    backgroundColor string
    The background color of the text widget.
    color string
    The color of the text in the widget.
    description string
    The description of the widget.
    fontSize string
    The size of the text in the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    textAlign string
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    text str
    The text to display in the widget.
    background_color str
    The background color of the text widget.
    color str
    The color of the text in the widget.
    description str
    The description of the widget.
    font_size str
    The size of the text in the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    text_align str
    The alignment of the text in the widget. Valid values are center, left, right.
    time PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    text String
    The text to display in the widget.
    backgroundColor String
    The background color of the text widget.
    color String
    The color of the text in the widget.
    description String
    The description of the widget.
    fontSize String
    The size of the text in the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    textAlign String
    The alignment of the text in the widget. Valid values are center, left, right.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinition, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionArgs

    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Request PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequest
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    Time PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Request PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequest
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    Time PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request object
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequest
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    time PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequest
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    time PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequest
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    time PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request Property Map
    A nested block describing the request to use when displaying the widget. Only one request block is allowed.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestArgs

    query object
    The query for the funnel widget request.
    query Property Map
    The query for the funnel widget request.

    PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryArgs

    DataSource string
    The data source for funnel queries. Valid values are rum.
    QueryString string
    The widget query.
    Steps List<PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStep>
    The funnel steps. Multiple step blocks are allowed.
    DataSource string
    The data source for funnel queries. Valid values are rum.
    QueryString string
    The widget query.
    Steps []PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStep
    The funnel steps. Multiple step blocks are allowed.
    data_source string
    The data source for funnel queries. Valid values are rum.
    query_string string
    The widget query.
    steps list(object)
    The funnel steps. Multiple step blocks are allowed.
    dataSource String
    The data source for funnel queries. Valid values are rum.
    queryString String
    The widget query.
    steps List<PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStep>
    The funnel steps. Multiple step blocks are allowed.
    dataSource string
    The data source for funnel queries. Valid values are rum.
    queryString string
    The widget query.
    steps PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStep[]
    The funnel steps. Multiple step blocks are allowed.
    data_source str
    The data source for funnel queries. Valid values are rum.
    query_string str
    The widget query.
    steps Sequence[PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStep]
    The funnel steps. Multiple step blocks are allowed.
    dataSource String
    The data source for funnel queries. Valid values are rum.
    queryString String
    The widget query.
    steps List<Property Map>
    The funnel steps. Multiple step blocks are allowed.

    PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStep, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStepArgs

    Facet string
    The facet of the step.
    Value string
    The value of the step.
    Facet string
    The facet of the step.
    Value string
    The value of the step.
    facet string
    The facet of the step.
    value string
    The value of the step.
    facet String
    The facet of the step.
    value String
    The value of the step.
    facet string
    The facet of the step.
    value string
    The value of the step.
    facet str
    The facet of the step.
    value str
    The value of the step.
    facet String
    The facet of the step.
    value String
    The value of the step.

    PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinition, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionArgs

    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    Style PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    Time PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    View PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionView
    The view of the world that the map should render.
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    Style PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    Time PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    View PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionView
    The view of the world that the map should render.
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests list(object)
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    style object
    The style of the widget graph. One nested block is allowed using the structure below.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    view object
    The view of the world that the map should render.
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    style PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    time PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    view PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionView
    The view of the world that the map should render.
    customLinks PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequest[]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    style PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    time PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    view PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionView
    The view of the world that the map should render.
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequest]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    style PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    time PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    view PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionView
    The view of the world that the map should render.
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    style Property Map
    The style of the widget graph. One nested block is allowed using the structure below.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    view Property Map
    The view of the world that the map should render.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestArgs

    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormula>
    List of formulas that operate on queries.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuery>
    List of queries that can be returned directly or used in formulas.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormula
    List of formulas that operate on queries.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuery
    List of queries that can be returned directly or used in formulas.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas list(object)
    List of formulas that operate on queries.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    List of queries that can be returned directly or used in formulas.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormula>
    List of formulas that operate on queries.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuery>
    List of queries that can be returned directly or used in formulas.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormula[]
    List of formulas that operate on queries.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuery[]
    List of queries that can be returned directly or used in formulas.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormula]
    List of formulas that operate on queries.
    log_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuery]
    List of queries that can be returned directly or used in formulas.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<Property Map>
    List of formulas that operate on queries.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    List of queries that can be returned directly or used in formulas.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionStyle, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionStyleArgs

    Palette string
    The color palette to apply to the widget.
    PaletteFlip bool
    A Boolean indicating whether to flip the palette tones.
    Palette string
    The color palette to apply to the widget.
    PaletteFlip bool
    A Boolean indicating whether to flip the palette tones.
    palette string
    The color palette to apply to the widget.
    palette_flip bool
    A Boolean indicating whether to flip the palette tones.
    palette String
    The color palette to apply to the widget.
    paletteFlip Boolean
    A Boolean indicating whether to flip the palette tones.
    palette string
    The color palette to apply to the widget.
    paletteFlip boolean
    A Boolean indicating whether to flip the palette tones.
    palette str
    The color palette to apply to the widget.
    palette_flip bool
    A Boolean indicating whether to flip the palette tones.
    palette String
    The color palette to apply to the widget.
    paletteFlip Boolean
    A Boolean indicating whether to flip the palette tones.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionView, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionViewArgs

    Focus string
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    Focus string
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    focus string
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    focus String
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    focus string
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    focus str
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).
    focus String
    The 2-letter ISO code of a country to focus the map on, or WORLD for global view, or a region (EMEA, APAC, LATAM), or a continent (NORTH_AMERICA, SOUTH_AMERICA, EUROPE, AFRICA, ASIA, OCEANIA).

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinition, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionArgs

    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    Events List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionEvent>
    The definition of the event to overlay on the graph. Multiple event blocks are allowed using the structure below.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LegendSize string
    The size of the legend displayed in the widget.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Markers List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarker>
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given heatmapDefinition block.
    Requests List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    ShowLegend bool
    Whether or not to show the legend on this widget.
    Time PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Xaxis PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    Yaxis PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxis
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    Events []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionEvent
    The definition of the event to overlay on the graph. Multiple event blocks are allowed using the structure below.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LegendSize string
    The size of the legend displayed in the widget.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Markers []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarker
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given heatmapDefinition block.
    Requests []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    ShowLegend bool
    Whether or not to show the legend on this widget.
    Time PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Xaxis PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    Yaxis PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxis
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    events list(object)
    The definition of the event to overlay on the graph. Multiple event blocks are allowed using the structure below.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend_size string
    The size of the legend displayed in the widget.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers list(object)
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given heatmapDefinition block.
    requests list(object)
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    show_legend bool
    Whether or not to show the legend on this widget.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    xaxis object
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis object
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    events List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionEvent>
    The definition of the event to overlay on the graph. Multiple event blocks are allowed using the structure below.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize String
    The size of the legend displayed in the widget.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarker>
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given heatmapDefinition block.
    requests List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    showLegend Boolean
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxis
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    customLinks PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    events PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionEvent[]
    The definition of the event to overlay on the graph. Multiple event blocks are allowed using the structure below.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize string
    The size of the legend displayed in the widget.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarker[]
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given heatmapDefinition block.
    requests PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequest[]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    showLegend boolean
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxis
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    events Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionEvent]
    The definition of the event to overlay on the graph. Multiple event blocks are allowed using the structure below.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend_size str
    The size of the legend displayed in the widget.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarker]
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given heatmapDefinition block.
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequest]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    show_legend bool
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxis
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    events List<Property Map>
    The definition of the event to overlay on the graph. Multiple event blocks are allowed using the structure below.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize String
    The size of the legend displayed in the widget.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers List<Property Map>
    A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple marker blocks are allowed within a given heatmapDefinition block.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    showLegend Boolean
    Whether or not to show the legend on this widget.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    xaxis Property Map
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis Property Map
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionEvent, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionEventArgs

    Q string
    The event query to use in the widget.
    TagsExecution string
    The execution method for multi-value filters.
    Q string
    The event query to use in the widget.
    TagsExecution string
    The execution method for multi-value filters.
    q string
    The event query to use in the widget.
    tags_execution string
    The execution method for multi-value filters.
    q String
    The event query to use in the widget.
    tagsExecution String
    The execution method for multi-value filters.
    q string
    The event query to use in the widget.
    tagsExecution string
    The execution method for multi-value filters.
    q str
    The event query to use in the widget.
    tags_execution str
    The execution method for multi-value filters.
    q String
    The event query to use in the widget.
    tagsExecution String
    The execution method for multi-value filters.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarker, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarkerArgs

    Value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    DisplayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    Label string
    Label to display over the marker.
    Time string
    Timestamp for the marker position.
    Value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    DisplayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    Label string
    Label to display over the marker.
    Time string
    Timestamp for the marker position.
    value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    display_type string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label string
    Label to display over the marker.
    time string
    Timestamp for the marker position.
    value String
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType String
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label String
    Label to display over the marker.
    time String
    Timestamp for the marker position.
    value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label string
    Label to display over the marker.
    time string
    Timestamp for the marker position.
    value str
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    display_type str
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label str
    Label to display over the marker.
    time str
    Timestamp for the marker position.
    value String
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType String
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label String
    Label to display over the marker.
    time String
    Timestamp for the marker position.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestArgs

    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormula>
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Style PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormula
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Style PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas list(object)
    A list of formulas to use in the widget.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style object
    The style of the widget graph. One nested block is allowed using the structure below.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormula>
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormula[]
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apm_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormula]
    A list of formulas to use in the widget.
    log_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<Property Map>
    A list of formulas to use in the widget.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    style Property Map
    The style of the widget graph. One nested block is allowed using the structure below.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestStyle, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestStyleArgs

    OrderBy string
    How to order series. Valid values are tags, values.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    OrderBy string
    How to order series. Valid values are tags, values.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    order_by string
    How to order series. Valid values are tags, values.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy String
    How to order series. Valid values are tags, values.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy string
    How to order series. Valid values are tags, values.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    order_by str
    How to order series. Valid values are tags, values.
    palette str
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    orderBy String
    How to order series. Valid values are tags, values.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxis, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxisArgs

    NumBuckets int
    Number of time buckets to target, also known as the resolution of the time bins. This is only applicable for distribution of points (group distributions use the roll-up modifier).
    NumBuckets int
    Number of time buckets to target, also known as the resolution of the time bins. This is only applicable for distribution of points (group distributions use the roll-up modifier).
    num_buckets number
    Number of time buckets to target, also known as the resolution of the time bins. This is only applicable for distribution of points (group distributions use the roll-up modifier).
    numBuckets Integer
    Number of time buckets to target, also known as the resolution of the time bins. This is only applicable for distribution of points (group distributions use the roll-up modifier).
    numBuckets number
    Number of time buckets to target, also known as the resolution of the time bins. This is only applicable for distribution of points (group distributions use the roll-up modifier).
    num_buckets int
    Number of time buckets to target, also known as the resolution of the time bins. This is only applicable for distribution of points (group distributions use the roll-up modifier).
    numBuckets Number
    Number of time buckets to target, also known as the resolution of the time bins. This is only applicable for distribution of points (group distributions use the roll-up modifier).

    PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxis, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxisArgs

    IncludeZero bool
    Set to true to include zero.
    Label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    Max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    Min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    Scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    IncludeZero bool
    Set to true to include zero.
    Label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    Max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    Min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    Scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    include_zero bool
    Set to true to include zero.
    label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero Boolean
    Set to true to include zero.
    label String
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max String
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min String
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale String
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero boolean
    Set to true to include zero.
    label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    include_zero bool
    Set to true to include zero.
    label str
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max str
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min str
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale str
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero Boolean
    Set to true to include zero.
    label String
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max String
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min String
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale String
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinition, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionArgs

    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    Groups List<string>
    The list of tag prefixes to group by.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    NoGroupHosts bool
    A Boolean indicating whether to show the hosts that don't fit in a group.
    NoMetricHosts bool
    A Boolean indicating whether to show nodes with no metrics.
    NodeType string
    The type of node used. Valid values are host, container.
    Notes string
    Notes/description text for the host map widget.
    Request PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below.
    Scopes List<string>
    The list of tags used to filter the map.
    Style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    Time PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    Groups []string
    The list of tag prefixes to group by.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    NoGroupHosts bool
    A Boolean indicating whether to show the hosts that don't fit in a group.
    NoMetricHosts bool
    A Boolean indicating whether to show nodes with no metrics.
    NodeType string
    The type of node used. Valid values are host, container.
    Notes string
    Notes/description text for the host map widget.
    Request PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below.
    Scopes []string
    The list of tags used to filter the map.
    Style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    Time PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    groups list(string)
    The list of tag prefixes to group by.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    no_group_hosts bool
    A Boolean indicating whether to show the hosts that don't fit in a group.
    no_metric_hosts bool
    A Boolean indicating whether to show nodes with no metrics.
    node_type string
    The type of node used. Valid values are host, container.
    notes string
    Notes/description text for the host map widget.
    request object
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below.
    scopes list(string)
    The list of tags used to filter the map.
    style object
    The style of the widget graph. One nested block is allowed using the structure below.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    groups List<String>
    The list of tag prefixes to group by.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    noGroupHosts Boolean
    A Boolean indicating whether to show the hosts that don't fit in a group.
    noMetricHosts Boolean
    A Boolean indicating whether to show nodes with no metrics.
    nodeType String
    The type of node used. Valid values are host, container.
    notes String
    Notes/description text for the host map widget.
    request PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below.
    scopes List<String>
    The list of tags used to filter the map.
    style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    time PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    customLinks PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    groups string[]
    The list of tag prefixes to group by.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    noGroupHosts boolean
    A Boolean indicating whether to show the hosts that don't fit in a group.
    noMetricHosts boolean
    A Boolean indicating whether to show nodes with no metrics.
    nodeType string
    The type of node used. Valid values are host, container.
    notes string
    Notes/description text for the host map widget.
    request PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below.
    scopes string[]
    The list of tags used to filter the map.
    style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    time PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    groups Sequence[str]
    The list of tag prefixes to group by.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    no_group_hosts bool
    A Boolean indicating whether to show the hosts that don't fit in a group.
    no_metric_hosts bool
    A Boolean indicating whether to show nodes with no metrics.
    node_type str
    The type of node used. Valid values are host, container.
    notes str
    Notes/description text for the host map widget.
    request PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below.
    scopes Sequence[str]
    The list of tags used to filter the map.
    style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionStyle
    The style of the widget graph. One nested block is allowed using the structure below.
    time PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    groups List<String>
    The list of tag prefixes to group by.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    noGroupHosts Boolean
    A Boolean indicating whether to show the hosts that don't fit in a group.
    noMetricHosts Boolean
    A Boolean indicating whether to show nodes with no metrics.
    nodeType String
    The type of node used. Valid values are host, container.
    notes String
    Notes/description text for the host map widget.
    request Property Map
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below.
    scopes List<String>
    The list of tags used to filter the map.
    style Property Map
    The style of the widget graph. One nested block is allowed using the structure below.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestArgs

    Fill PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFill
    The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    Size PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSize
    The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    Fill PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFill
    The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    Size PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSize
    The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    fill object
    The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    size object
    The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    fill PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFill
    The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    size PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSize
    The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    fill PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFill
    The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    size PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSize
    The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    fill PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFill
    The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    size PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSize
    The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    fill Property Map
    The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    size Property Map
    The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFill, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillArgs

    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormula>
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormula
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas list(object)
    A list of formulas to use in the widget.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormula>
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormula[]
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apm_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormula]
    A list of formulas to use in the widget.
    log_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<Property Map>
    A list of formulas to use in the widget.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormula, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSize, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeArgs

    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormula>
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormula
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas list(object)
    A list of formulas to use in the widget.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormula>
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormula[]
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apm_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormula]
    A list of formulas to use in the widget.
    log_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<Property Map>
    A list of formulas to use in the widget.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormula, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionStyle, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionStyleArgs

    FillMax string
    The max value to use to color the map.
    FillMin string
    The min value to use to color the map.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    PaletteFlip bool
    A Boolean indicating whether to flip the palette tones.
    FillMax string
    The max value to use to color the map.
    FillMin string
    The min value to use to color the map.
    Palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    PaletteFlip bool
    A Boolean indicating whether to flip the palette tones.
    fill_max string
    The max value to use to color the map.
    fill_min string
    The min value to use to color the map.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    palette_flip bool
    A Boolean indicating whether to flip the palette tones.
    fillMax String
    The max value to use to color the map.
    fillMin String
    The min value to use to color the map.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    paletteFlip Boolean
    A Boolean indicating whether to flip the palette tones.
    fillMax string
    The max value to use to color the map.
    fillMin string
    The min value to use to color the map.
    palette string
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    paletteFlip boolean
    A Boolean indicating whether to flip the palette tones.
    fill_max str
    The max value to use to color the map.
    fill_min str
    The min value to use to color the map.
    palette str
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    palette_flip bool
    A Boolean indicating whether to flip the palette tones.
    fillMax String
    The max value to use to color the map.
    fillMin String
    The min value to use to color the map.
    palette String
    A color palette to apply to the widget. The available options are available at: https://docs.datadoghq.com/dashboards/widgets/timeseries/#appearance.
    paletteFlip Boolean
    A Boolean indicating whether to flip the palette tones.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetIframeDefinition, PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionArgs

    Url string
    The URL to use as a data source for the widget.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Url string
    The URL to use as a data source for the widget.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    url string
    The URL to use as a data source for the widget.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    url String
    The URL to use as a data source for the widget.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    url string
    The URL to use as a data source for the widget.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    url str
    The URL to use as a data source for the widget.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    url String
    The URL to use as a data source for the widget.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetImageDefinition, PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionArgs

    Url string
    URL of the image.
    Description string
    The description of the widget.
    HasBackground bool
    Whether to display a background or not. Defaults to true.
    HasBorder bool
    Whether to display a border or not. Defaults to true.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    HorizontalAlign string
    The horizontal alignment for the widget. Valid values are center, left, right.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Margin string
    The margins to use around the image. Note: small and large values are deprecated. Valid values are sm, md, lg, small, large.
    Sizing string
    The preferred method to adapt the dimensions of the image. The values are based on the image object-fit CSS properties. Note: zoom, fit and center values are deprecated. Valid values are fill, contain, cover, none, scale-down, zoom, fit, center.
    Time PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    UrlDarkTheme string
    URL of the image in dark mode.
    VerticalAlign string
    The vertical alignment for the widget. Valid values are center, top, bottom.
    Url string
    URL of the image.
    Description string
    The description of the widget.
    HasBackground bool
    Whether to display a background or not. Defaults to true.
    HasBorder bool
    Whether to display a border or not. Defaults to true.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    HorizontalAlign string
    The horizontal alignment for the widget. Valid values are center, left, right.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Margin string
    The margins to use around the image. Note: small and large values are deprecated. Valid values are sm, md, lg, small, large.
    Sizing string
    The preferred method to adapt the dimensions of the image. The values are based on the image object-fit CSS properties. Note: zoom, fit and center values are deprecated. Valid values are fill, contain, cover, none, scale-down, zoom, fit, center.
    Time PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    UrlDarkTheme string
    URL of the image in dark mode.
    VerticalAlign string
    The vertical alignment for the widget. Valid values are center, top, bottom.
    url string
    URL of the image.
    description string
    The description of the widget.
    has_background bool
    Whether to display a background or not. Defaults to true.
    has_border bool
    Whether to display a border or not. Defaults to true.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    horizontal_align string
    The horizontal alignment for the widget. Valid values are center, left, right.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    margin string
    The margins to use around the image. Note: small and large values are deprecated. Valid values are sm, md, lg, small, large.
    sizing string
    The preferred method to adapt the dimensions of the image. The values are based on the image object-fit CSS properties. Note: zoom, fit and center values are deprecated. Valid values are fill, contain, cover, none, scale-down, zoom, fit, center.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    url_dark_theme string
    URL of the image in dark mode.
    vertical_align string
    The vertical alignment for the widget. Valid values are center, top, bottom.
    url String
    URL of the image.
    description String
    The description of the widget.
    hasBackground Boolean
    Whether to display a background or not. Defaults to true.
    hasBorder Boolean
    Whether to display a border or not. Defaults to true.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    horizontalAlign String
    The horizontal alignment for the widget. Valid values are center, left, right.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    margin String
    The margins to use around the image. Note: small and large values are deprecated. Valid values are sm, md, lg, small, large.
    sizing String
    The preferred method to adapt the dimensions of the image. The values are based on the image object-fit CSS properties. Note: zoom, fit and center values are deprecated. Valid values are fill, contain, cover, none, scale-down, zoom, fit, center.
    time PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    urlDarkTheme String
    URL of the image in dark mode.
    verticalAlign String
    The vertical alignment for the widget. Valid values are center, top, bottom.
    url string
    URL of the image.
    description string
    The description of the widget.
    hasBackground boolean
    Whether to display a background or not. Defaults to true.
    hasBorder boolean
    Whether to display a border or not. Defaults to true.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    horizontalAlign string
    The horizontal alignment for the widget. Valid values are center, left, right.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    margin string
    The margins to use around the image. Note: small and large values are deprecated. Valid values are sm, md, lg, small, large.
    sizing string
    The preferred method to adapt the dimensions of the image. The values are based on the image object-fit CSS properties. Note: zoom, fit and center values are deprecated. Valid values are fill, contain, cover, none, scale-down, zoom, fit, center.
    time PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    urlDarkTheme string
    URL of the image in dark mode.
    verticalAlign string
    The vertical alignment for the widget. Valid values are center, top, bottom.
    url str
    URL of the image.
    description str
    The description of the widget.
    has_background bool
    Whether to display a background or not. Defaults to true.
    has_border bool
    Whether to display a border or not. Defaults to true.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    horizontal_align str
    The horizontal alignment for the widget. Valid values are center, left, right.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    margin str
    The margins to use around the image. Note: small and large values are deprecated. Valid values are sm, md, lg, small, large.
    sizing str
    The preferred method to adapt the dimensions of the image. The values are based on the image object-fit CSS properties. Note: zoom, fit and center values are deprecated. Valid values are fill, contain, cover, none, scale-down, zoom, fit, center.
    time PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    url_dark_theme str
    URL of the image in dark mode.
    vertical_align str
    The vertical alignment for the widget. Valid values are center, top, bottom.
    url String
    URL of the image.
    description String
    The description of the widget.
    hasBackground Boolean
    Whether to display a background or not. Defaults to true.
    hasBorder Boolean
    Whether to display a border or not. Defaults to true.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    horizontalAlign String
    The horizontal alignment for the widget. Valid values are center, left, right.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    margin String
    The margins to use around the image. Note: small and large values are deprecated. Valid values are sm, md, lg, small, large.
    sizing String
    The preferred method to adapt the dimensions of the image. The values are based on the image object-fit CSS properties. Note: zoom, fit and center values are deprecated. Valid values are fill, contain, cover, none, scale-down, zoom, fit, center.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    urlDarkTheme String
    URL of the image in dark mode.
    verticalAlign String
    The vertical alignment for the widget. Valid values are center, top, bottom.

    PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinition, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionArgs

    Requests List<PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequest>
    Nested block describing the requests to use when displaying the widget. Multiple request blocks are allowed with the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LegendSize string
    The size of the legend displayed in the widget.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    ShowLegend bool
    Whether or not to show the legend on this widget.
    Time PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Requests []PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequest
    Nested block describing the requests to use when displaying the widget. Multiple request blocks are allowed with the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LegendSize string
    The size of the legend displayed in the widget.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    ShowLegend bool
    Whether or not to show the legend on this widget.
    Time PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    requests list(object)
    Nested block describing the requests to use when displaying the widget. Multiple request blocks are allowed with the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend_size string
    The size of the legend displayed in the widget.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    show_legend bool
    Whether or not to show the legend on this widget.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    requests List<PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequest>
    Nested block describing the requests to use when displaying the widget. Multiple request blocks are allowed with the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize String
    The size of the legend displayed in the widget.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showLegend Boolean
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    requests PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequest[]
    Nested block describing the requests to use when displaying the widget. Multiple request blocks are allowed with the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize string
    The size of the legend displayed in the widget.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showLegend boolean
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequest]
    Nested block describing the requests to use when displaying the widget. Multiple request blocks are allowed with the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend_size str
    The size of the legend displayed in the widget.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    show_legend bool
    Whether or not to show the legend on this widget.
    time PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    requests List<Property Map>
    Nested block describing the requests to use when displaying the widget. Multiple request blocks are allowed with the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legendSize String
    The size of the legend displayed in the widget.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showLegend Boolean
    Whether or not to show the legend on this widget.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestArgs

    columns list(object)
    Widget columns.
    query object
    Updated list stream widget.
    response_format string
    Widget response format. Valid values are eventList.
    columns List<Property Map>
    Widget columns.
    query Property Map
    Updated list stream widget.
    responseFormat String
    Widget response format. Valid values are eventList.

    PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestColumn, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestColumnArgs

    Field string
    Widget column field.
    Width string
    Widget column width. Valid values are auto, compact, full.
    Field string
    Widget column field.
    Width string
    Widget column width. Valid values are auto, compact, full.
    field string
    Widget column field.
    width string
    Widget column width. Valid values are auto, compact, full.
    field String
    Widget column field.
    width String
    Widget column width. Valid values are auto, compact, full.
    field string
    Widget column field.
    width string
    Widget column width. Valid values are auto, compact, full.
    field str
    Widget column field.
    width str
    Widget column width. Valid values are auto, compact, full.
    field String
    Widget column field.
    width String
    Widget column width. Valid values are auto, compact, full.

    PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryArgs

    DataSource string
    Source from which to query items to display in the stream. Valid values are logsStream, auditStream, ciPipelineStream, ciTestStream, rumIssueStream, apmIssueStream, traceStream, logsIssueStream, logsPatternStream, logsTransactionStream, eventStream, rumStream, llmObservabilityStream, issueStream.
    ClusteringPatternFieldPath string
    Specifies the field for logs pattern clustering. Can only be used with logsPatternStream.
    EventSize string
    Size of events displayed in widget. Required if dataSource is eventStream. Valid values are s, l.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryGroupBy>
    Group by configuration for the List Stream widget. Group by can only be used with logsPatternStream (up to 4 items) or logsTransactionStream (one group by item is required) list stream source.
    Indexes List<string>
    List of indexes.
    QueryString string
    Widget query.
    Sort PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuerySort
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    Storage string
    Storage location (private beta).
    DataSource string
    Source from which to query items to display in the stream. Valid values are logsStream, auditStream, ciPipelineStream, ciTestStream, rumIssueStream, apmIssueStream, traceStream, logsIssueStream, logsPatternStream, logsTransactionStream, eventStream, rumStream, llmObservabilityStream, issueStream.
    ClusteringPatternFieldPath string
    Specifies the field for logs pattern clustering. Can only be used with logsPatternStream.
    EventSize string
    Size of events displayed in widget. Required if dataSource is eventStream. Valid values are s, l.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryGroupBy
    Group by configuration for the List Stream widget. Group by can only be used with logsPatternStream (up to 4 items) or logsTransactionStream (one group by item is required) list stream source.
    Indexes []string
    List of indexes.
    QueryString string
    Widget query.
    Sort PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuerySort
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    Storage string
    Storage location (private beta).
    data_source string
    Source from which to query items to display in the stream. Valid values are logsStream, auditStream, ciPipelineStream, ciTestStream, rumIssueStream, apmIssueStream, traceStream, logsIssueStream, logsPatternStream, logsTransactionStream, eventStream, rumStream, llmObservabilityStream, issueStream.
    clustering_pattern_field_path string
    Specifies the field for logs pattern clustering. Can only be used with logsPatternStream.
    event_size string
    Size of events displayed in widget. Required if dataSource is eventStream. Valid values are s, l.
    group_bies list(object)
    Group by configuration for the List Stream widget. Group by can only be used with logsPatternStream (up to 4 items) or logsTransactionStream (one group by item is required) list stream source.
    indexes list(string)
    List of indexes.
    query_string string
    Widget query.
    sort object
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    storage string
    Storage location (private beta).
    dataSource String
    Source from which to query items to display in the stream. Valid values are logsStream, auditStream, ciPipelineStream, ciTestStream, rumIssueStream, apmIssueStream, traceStream, logsIssueStream, logsPatternStream, logsTransactionStream, eventStream, rumStream, llmObservabilityStream, issueStream.
    clusteringPatternFieldPath String
    Specifies the field for logs pattern clustering. Can only be used with logsPatternStream.
    eventSize String
    Size of events displayed in widget. Required if dataSource is eventStream. Valid values are s, l.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryGroupBy>
    Group by configuration for the List Stream widget. Group by can only be used with logsPatternStream (up to 4 items) or logsTransactionStream (one group by item is required) list stream source.
    indexes List<String>
    List of indexes.
    queryString String
    Widget query.
    sort PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuerySort
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    storage String
    Storage location (private beta).
    dataSource string
    Source from which to query items to display in the stream. Valid values are logsStream, auditStream, ciPipelineStream, ciTestStream, rumIssueStream, apmIssueStream, traceStream, logsIssueStream, logsPatternStream, logsTransactionStream, eventStream, rumStream, llmObservabilityStream, issueStream.
    clusteringPatternFieldPath string
    Specifies the field for logs pattern clustering. Can only be used with logsPatternStream.
    eventSize string
    Size of events displayed in widget. Required if dataSource is eventStream. Valid values are s, l.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryGroupBy[]
    Group by configuration for the List Stream widget. Group by can only be used with logsPatternStream (up to 4 items) or logsTransactionStream (one group by item is required) list stream source.
    indexes string[]
    List of indexes.
    queryString string
    Widget query.
    sort PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuerySort
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    storage string
    Storage location (private beta).
    data_source str
    Source from which to query items to display in the stream. Valid values are logsStream, auditStream, ciPipelineStream, ciTestStream, rumIssueStream, apmIssueStream, traceStream, logsIssueStream, logsPatternStream, logsTransactionStream, eventStream, rumStream, llmObservabilityStream, issueStream.
    clustering_pattern_field_path str
    Specifies the field for logs pattern clustering. Can only be used with logsPatternStream.
    event_size str
    Size of events displayed in widget. Required if dataSource is eventStream. Valid values are s, l.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryGroupBy]
    Group by configuration for the List Stream widget. Group by can only be used with logsPatternStream (up to 4 items) or logsTransactionStream (one group by item is required) list stream source.
    indexes Sequence[str]
    List of indexes.
    query_string str
    Widget query.
    sort PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuerySort
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    storage str
    Storage location (private beta).
    dataSource String
    Source from which to query items to display in the stream. Valid values are logsStream, auditStream, ciPipelineStream, ciTestStream, rumIssueStream, apmIssueStream, traceStream, logsIssueStream, logsPatternStream, logsTransactionStream, eventStream, rumStream, llmObservabilityStream, issueStream.
    clusteringPatternFieldPath String
    Specifies the field for logs pattern clustering. Can only be used with logsPatternStream.
    eventSize String
    Size of events displayed in widget. Required if dataSource is eventStream. Valid values are s, l.
    groupBies List<Property Map>
    Group by configuration for the List Stream widget. Group by can only be used with logsPatternStream (up to 4 items) or logsTransactionStream (one group by item is required) list stream source.
    indexes List<String>
    List of indexes.
    queryString String
    Widget query.
    sort Property Map
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    storage String
    Storage location (private beta).

    PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryGroupByArgs

    Facet string
    Facet name
    Facet string
    Facet name
    facet string
    Facet name
    facet String
    Facet name
    facet string
    Facet name
    facet str
    Facet name
    facet String
    Facet name

    PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuerySort, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuerySortArgs

    Column string
    The facet path for the column.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Column string
    The facet path for the column.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    column string
    The facet path for the column.
    order string
    Widget sorting methods. Valid values are asc, desc.
    column String
    The facet path for the column.
    order String
    Widget sorting methods. Valid values are asc, desc.
    column string
    The facet path for the column.
    order string
    Widget sorting methods. Valid values are asc, desc.
    column str
    The facet path for the column.
    order str
    Widget sorting methods. Valid values are asc, desc.
    column String
    The facet path for the column.
    order String
    Widget sorting methods. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinition, PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionArgs

    Columns List<string>
    Stringified list of columns to use, for example: ["column1","column2","column3"].
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    Indexes List<string>
    An array of index names to query in the stream.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    MessageDisplay string
    The number of log lines to display. Valid values are inline, expanded-md, expanded-lg.
    Query string
    Query to filter the log stream with.
    ShowDateColumn bool
    If the date column should be displayed.
    ShowMessageColumn bool
    If the message column should be displayed.
    Sort PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionSort
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    Time PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Columns []string
    Stringified list of columns to use, for example: ["column1","column2","column3"].
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    Indexes []string
    An array of index names to query in the stream.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    MessageDisplay string
    The number of log lines to display. Valid values are inline, expanded-md, expanded-lg.
    Query string
    Query to filter the log stream with.
    ShowDateColumn bool
    If the date column should be displayed.
    ShowMessageColumn bool
    If the message column should be displayed.
    Sort PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionSort
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    Time PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    columns list(string)
    Stringified list of columns to use, for example: ["column1","column2","column3"].
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    indexes list(string)
    An array of index names to query in the stream.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    message_display string
    The number of log lines to display. Valid values are inline, expanded-md, expanded-lg.
    query string
    Query to filter the log stream with.
    show_date_column bool
    If the date column should be displayed.
    show_message_column bool
    If the message column should be displayed.
    sort object
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    columns List<String>
    Stringified list of columns to use, for example: ["column1","column2","column3"].
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    indexes List<String>
    An array of index names to query in the stream.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    messageDisplay String
    The number of log lines to display. Valid values are inline, expanded-md, expanded-lg.
    query String
    Query to filter the log stream with.
    showDateColumn Boolean
    If the date column should be displayed.
    showMessageColumn Boolean
    If the message column should be displayed.
    sort PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionSort
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    time PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    columns string[]
    Stringified list of columns to use, for example: ["column1","column2","column3"].
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    indexes string[]
    An array of index names to query in the stream.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    messageDisplay string
    The number of log lines to display. Valid values are inline, expanded-md, expanded-lg.
    query string
    Query to filter the log stream with.
    showDateColumn boolean
    If the date column should be displayed.
    showMessageColumn boolean
    If the message column should be displayed.
    sort PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionSort
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    time PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    columns Sequence[str]
    Stringified list of columns to use, for example: ["column1","column2","column3"].
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    indexes Sequence[str]
    An array of index names to query in the stream.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    message_display str
    The number of log lines to display. Valid values are inline, expanded-md, expanded-lg.
    query str
    Query to filter the log stream with.
    show_date_column bool
    If the date column should be displayed.
    show_message_column bool
    If the message column should be displayed.
    sort PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionSort
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    time PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    columns List<String>
    Stringified list of columns to use, for example: ["column1","column2","column3"].
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    indexes List<String>
    An array of index names to query in the stream.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    messageDisplay String
    The number of log lines to display. Valid values are inline, expanded-md, expanded-lg.
    query String
    Query to filter the log stream with.
    showDateColumn Boolean
    If the date column should be displayed.
    showMessageColumn Boolean
    If the message column should be displayed.
    sort Property Map
    The facet and order to sort the data, for example: {"column": "time", "order": "desc"}.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionSort, PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionSortArgs

    Column string
    The facet path for the column.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Column string
    The facet path for the column.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    column string
    The facet path for the column.
    order string
    Widget sorting methods. Valid values are asc, desc.
    column String
    The facet path for the column.
    order String
    Widget sorting methods. Valid values are asc, desc.
    column string
    The facet path for the column.
    order string
    Widget sorting methods. Valid values are asc, desc.
    column str
    The facet path for the column.
    order str
    Widget sorting methods. Valid values are asc, desc.
    column String
    The facet path for the column.
    order String
    Widget sorting methods. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinition, PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionArgs

    Query string
    Query to filter the monitors with.
    ColorPreference string
    Whether to colorize text or background. Valid values are background, text.
    Description string
    The description of the widget.
    DisplayFormat string
    The display setting to use. Valid values are counts, countsAndList, list.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    HideZeroCounts bool
    A Boolean indicating whether to hide empty categories.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    ShowLastTriggered bool
    Whether to show the time that has elapsed since the monitor/group triggered.
    ShowPriority bool
    Whether to show the priorities column.
    Sort string
    The method to sort the monitors. Valid values are name, group, status, tags, triggered, group,asc, group,desc, name,asc, name,desc, status,asc, status,desc, tags,asc, tags,desc, triggered,asc, triggered,desc, priority,asc, priority,desc.
    SummaryType string
    The summary type to use. Valid values are monitors, groups, combined.
    Time PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Query string
    Query to filter the monitors with.
    ColorPreference string
    Whether to colorize text or background. Valid values are background, text.
    Description string
    The description of the widget.
    DisplayFormat string
    The display setting to use. Valid values are counts, countsAndList, list.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    HideZeroCounts bool
    A Boolean indicating whether to hide empty categories.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    ShowLastTriggered bool
    Whether to show the time that has elapsed since the monitor/group triggered.
    ShowPriority bool
    Whether to show the priorities column.
    Sort string
    The method to sort the monitors. Valid values are name, group, status, tags, triggered, group,asc, group,desc, name,asc, name,desc, status,asc, status,desc, tags,asc, tags,desc, triggered,asc, triggered,desc, priority,asc, priority,desc.
    SummaryType string
    The summary type to use. Valid values are monitors, groups, combined.
    Time PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    query string
    Query to filter the monitors with.
    color_preference string
    Whether to colorize text or background. Valid values are background, text.
    description string
    The description of the widget.
    display_format string
    The display setting to use. Valid values are counts, countsAndList, list.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    hide_zero_counts bool
    A Boolean indicating whether to hide empty categories.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    show_last_triggered bool
    Whether to show the time that has elapsed since the monitor/group triggered.
    show_priority bool
    Whether to show the priorities column.
    sort string
    The method to sort the monitors. Valid values are name, group, status, tags, triggered, group,asc, group,desc, name,asc, name,desc, status,asc, status,desc, tags,asc, tags,desc, triggered,asc, triggered,desc, priority,asc, priority,desc.
    summary_type string
    The summary type to use. Valid values are monitors, groups, combined.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    query String
    Query to filter the monitors with.
    colorPreference String
    Whether to colorize text or background. Valid values are background, text.
    description String
    The description of the widget.
    displayFormat String
    The display setting to use. Valid values are counts, countsAndList, list.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    hideZeroCounts Boolean
    A Boolean indicating whether to hide empty categories.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showLastTriggered Boolean
    Whether to show the time that has elapsed since the monitor/group triggered.
    showPriority Boolean
    Whether to show the priorities column.
    sort String
    The method to sort the monitors. Valid values are name, group, status, tags, triggered, group,asc, group,desc, name,asc, name,desc, status,asc, status,desc, tags,asc, tags,desc, triggered,asc, triggered,desc, priority,asc, priority,desc.
    summaryType String
    The summary type to use. Valid values are monitors, groups, combined.
    time PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    query string
    Query to filter the monitors with.
    colorPreference string
    Whether to colorize text or background. Valid values are background, text.
    description string
    The description of the widget.
    displayFormat string
    The display setting to use. Valid values are counts, countsAndList, list.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    hideZeroCounts boolean
    A Boolean indicating whether to hide empty categories.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showLastTriggered boolean
    Whether to show the time that has elapsed since the monitor/group triggered.
    showPriority boolean
    Whether to show the priorities column.
    sort string
    The method to sort the monitors. Valid values are name, group, status, tags, triggered, group,asc, group,desc, name,asc, name,desc, status,asc, status,desc, tags,asc, tags,desc, triggered,asc, triggered,desc, priority,asc, priority,desc.
    summaryType string
    The summary type to use. Valid values are monitors, groups, combined.
    time PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    query str
    Query to filter the monitors with.
    color_preference str
    Whether to colorize text or background. Valid values are background, text.
    description str
    The description of the widget.
    display_format str
    The display setting to use. Valid values are counts, countsAndList, list.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    hide_zero_counts bool
    A Boolean indicating whether to hide empty categories.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    show_last_triggered bool
    Whether to show the time that has elapsed since the monitor/group triggered.
    show_priority bool
    Whether to show the priorities column.
    sort str
    The method to sort the monitors. Valid values are name, group, status, tags, triggered, group,asc, group,desc, name,asc, name,desc, status,asc, status,desc, tags,asc, tags,desc, triggered,asc, triggered,desc, priority,asc, priority,desc.
    summary_type str
    The summary type to use. Valid values are monitors, groups, combined.
    time PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    query String
    Query to filter the monitors with.
    colorPreference String
    Whether to colorize text or background. Valid values are background, text.
    description String
    The description of the widget.
    displayFormat String
    The display setting to use. Valid values are counts, countsAndList, list.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    hideZeroCounts Boolean
    A Boolean indicating whether to hide empty categories.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showLastTriggered Boolean
    Whether to show the time that has elapsed since the monitor/group triggered.
    showPriority Boolean
    Whether to show the priorities column.
    sort String
    The method to sort the monitors. Valid values are name, group, status, tags, triggered, group,asc, group,desc, name,asc, name,desc, status,asc, status,desc, tags,asc, tags,desc, triggered,asc, triggered,desc, priority,asc, priority,desc.
    summaryType String
    The summary type to use. Valid values are monitors, groups, combined.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetNoteDefinition, PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionArgs

    Content string
    The content of the note.
    BackgroundColor string
    The background color of the note.
    Description string
    The description of the widget.
    FontSize string
    The size of the text.
    HasPadding bool
    Whether to add padding or not. Defaults to true.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    ShowTick bool
    Whether to show a tick or not.
    TextAlign string
    The alignment of the widget's text. Valid values are center, left, right.
    TickEdge string
    When tick = true, a string indicating on which side of the widget the tick should be displayed. Valid values are bottom, left, right, top.
    TickPos string
    When tick = true, a string with a percent sign indicating the position of the tick, for example: tickPos = "50%" is centered alignment.
    Time PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    VerticalAlign string
    The vertical alignment for the widget. Valid values are center, top, bottom.
    Content string
    The content of the note.
    BackgroundColor string
    The background color of the note.
    Description string
    The description of the widget.
    FontSize string
    The size of the text.
    HasPadding bool
    Whether to add padding or not. Defaults to true.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    ShowTick bool
    Whether to show a tick or not.
    TextAlign string
    The alignment of the widget's text. Valid values are center, left, right.
    TickEdge string
    When tick = true, a string indicating on which side of the widget the tick should be displayed. Valid values are bottom, left, right, top.
    TickPos string
    When tick = true, a string with a percent sign indicating the position of the tick, for example: tickPos = "50%" is centered alignment.
    Time PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    VerticalAlign string
    The vertical alignment for the widget. Valid values are center, top, bottom.
    content string
    The content of the note.
    background_color string
    The background color of the note.
    description string
    The description of the widget.
    font_size string
    The size of the text.
    has_padding bool
    Whether to add padding or not. Defaults to true.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    show_tick bool
    Whether to show a tick or not.
    text_align string
    The alignment of the widget's text. Valid values are center, left, right.
    tick_edge string
    When tick = true, a string indicating on which side of the widget the tick should be displayed. Valid values are bottom, left, right, top.
    tick_pos string
    When tick = true, a string with a percent sign indicating the position of the tick, for example: tickPos = "50%" is centered alignment.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    vertical_align string
    The vertical alignment for the widget. Valid values are center, top, bottom.
    content String
    The content of the note.
    backgroundColor String
    The background color of the note.
    description String
    The description of the widget.
    fontSize String
    The size of the text.
    hasPadding Boolean
    Whether to add padding or not. Defaults to true.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showTick Boolean
    Whether to show a tick or not.
    textAlign String
    The alignment of the widget's text. Valid values are center, left, right.
    tickEdge String
    When tick = true, a string indicating on which side of the widget the tick should be displayed. Valid values are bottom, left, right, top.
    tickPos String
    When tick = true, a string with a percent sign indicating the position of the tick, for example: tickPos = "50%" is centered alignment.
    time PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    verticalAlign String
    The vertical alignment for the widget. Valid values are center, top, bottom.
    content string
    The content of the note.
    backgroundColor string
    The background color of the note.
    description string
    The description of the widget.
    fontSize string
    The size of the text.
    hasPadding boolean
    Whether to add padding or not. Defaults to true.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showTick boolean
    Whether to show a tick or not.
    textAlign string
    The alignment of the widget's text. Valid values are center, left, right.
    tickEdge string
    When tick = true, a string indicating on which side of the widget the tick should be displayed. Valid values are bottom, left, right, top.
    tickPos string
    When tick = true, a string with a percent sign indicating the position of the tick, for example: tickPos = "50%" is centered alignment.
    time PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    verticalAlign string
    The vertical alignment for the widget. Valid values are center, top, bottom.
    content str
    The content of the note.
    background_color str
    The background color of the note.
    description str
    The description of the widget.
    font_size str
    The size of the text.
    has_padding bool
    Whether to add padding or not. Defaults to true.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    show_tick bool
    Whether to show a tick or not.
    text_align str
    The alignment of the widget's text. Valid values are center, left, right.
    tick_edge str
    When tick = true, a string indicating on which side of the widget the tick should be displayed. Valid values are bottom, left, right, top.
    tick_pos str
    When tick = true, a string with a percent sign indicating the position of the tick, for example: tickPos = "50%" is centered alignment.
    time PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    vertical_align str
    The vertical alignment for the widget. Valid values are center, top, bottom.
    content String
    The content of the note.
    backgroundColor String
    The background color of the note.
    description String
    The description of the widget.
    fontSize String
    The size of the text.
    hasPadding Boolean
    Whether to add padding or not. Defaults to true.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showTick Boolean
    Whether to show a tick or not.
    textAlign String
    The alignment of the widget's text. Valid values are center, left, right.
    tickEdge String
    When tick = true, a string indicating on which side of the widget the tick should be displayed. Valid values are bottom, left, right, top.
    tickPos String
    When tick = true, a string with a percent sign indicating the position of the tick, for example: tickPos = "50%" is centered alignment.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    verticalAlign String
    The vertical alignment for the widget. Valid values are center, top, bottom.

    PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinition, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionArgs

    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    Legend PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend
    Legend configuration for the widget.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Markers List<PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker>
    A nested block describing a marker to use when displaying the widget. Multiple marker blocks are allowed.
    Requests List<PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest>
    A nested block describing the request to use when displaying the widget.
    Time PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Yaxis PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    Legend PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend
    Legend configuration for the widget.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Markers []PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker
    A nested block describing a marker to use when displaying the widget. Multiple marker blocks are allowed.
    Requests []PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    Time PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Yaxis PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend object
    Legend configuration for the widget.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers list(object)
    A nested block describing a marker to use when displaying the widget. Multiple marker blocks are allowed.
    requests list(object)
    A nested block describing the request to use when displaying the widget.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    yaxis object
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend
    Legend configuration for the widget.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers List<PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker>
    A nested block describing a marker to use when displaying the widget. Multiple marker blocks are allowed.
    requests List<PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest>
    A nested block describing the request to use when displaying the widget.
    time PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    yaxis PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    customLinks PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend
    Legend configuration for the widget.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker[]
    A nested block describing a marker to use when displaying the widget. Multiple marker blocks are allowed.
    requests PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest[]
    A nested block describing the request to use when displaying the widget.
    time PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    yaxis PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend
    Legend configuration for the widget.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers Sequence[PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker]
    A nested block describing a marker to use when displaying the widget. Multiple marker blocks are allowed.
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest]
    A nested block describing the request to use when displaying the widget.
    time PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    yaxis PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    legend Property Map
    Legend configuration for the widget.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    markers List<Property Map>
    A nested block describing a marker to use when displaying the widget. Multiple marker blocks are allowed.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    yaxis Property Map
    A nested block describing the Y-Axis Controls. The structure of this block is described below.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegendArgs

    Type string
    Type of legend to show for the point plot widget. Valid values are automatic, none.
    Type string
    Type of legend to show for the point plot widget. Valid values are automatic, none.
    type string
    Type of legend to show for the point plot widget. Valid values are automatic, none.
    type String
    Type of legend to show for the point plot widget. Valid values are automatic, none.
    type string
    Type of legend to show for the point plot widget. Valid values are automatic, none.
    type str
    Type of legend to show for the point plot widget. Valid values are automatic, none.
    type String
    Type of legend to show for the point plot widget. Valid values are automatic, none.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarkerArgs

    Value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    DisplayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    Label string
    Label to display over the marker.
    Time string
    Timestamp for the marker position.
    Value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    DisplayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    Label string
    Label to display over the marker.
    Time string
    Timestamp for the marker position.
    value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    display_type string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label string
    Label to display over the marker.
    time string
    Timestamp for the marker position.
    value String
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType String
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label String
    Label to display over the marker.
    time String
    Timestamp for the marker position.
    value string
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType string
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label string
    Label to display over the marker.
    time string
    Timestamp for the marker position.
    value str
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    display_type str
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label str
    Label to display over the marker.
    time str
    Timestamp for the marker position.
    value String
    Value to apply. Can be a single value y = 15 or a range of values 0 < y < 10. For Distribution widgets with displayType set to percentile, this should be a numeric percentile value (for example, 90 for P90).
    displayType String
    Combination of a severity (error, warning, ok, or info) and a line type (dashed, solid, or bold). For Distribution widgets, this can be set to percentile. Example: error dashed.
    label String
    Label to display over the marker.
    time String
    Timestamp for the marker position.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestArgs

    Projection PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection
    Projection configuration for the point plot request.
    Query PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery
    Query configuration for the point plot request.
    RequestType string
    The type of data request. Must be dataProjection. Valid values are dataProjection.
    Limit int
    Maximum number of data points to return.
    Projection PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection
    Projection configuration for the point plot request.
    Query PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery
    Query configuration for the point plot request.
    RequestType string
    The type of data request. Must be dataProjection. Valid values are dataProjection.
    Limit int
    Maximum number of data points to return.
    projection object
    Projection configuration for the point plot request.
    query object
    Query configuration for the point plot request.
    request_type string
    The type of data request. Must be dataProjection. Valid values are dataProjection.
    limit number
    Maximum number of data points to return.
    projection PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection
    Projection configuration for the point plot request.
    query PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery
    Query configuration for the point plot request.
    requestType String
    The type of data request. Must be dataProjection. Valid values are dataProjection.
    limit Integer
    Maximum number of data points to return.
    projection PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection
    Projection configuration for the point plot request.
    query PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery
    Query configuration for the point plot request.
    requestType string
    The type of data request. Must be dataProjection. Valid values are dataProjection.
    limit number
    Maximum number of data points to return.
    projection PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection
    Projection configuration for the point plot request.
    query PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery
    Query configuration for the point plot request.
    request_type str
    The type of data request. Must be dataProjection. Valid values are dataProjection.
    limit int
    Maximum number of data points to return.
    projection Property Map
    Projection configuration for the point plot request.
    query Property Map
    Query configuration for the point plot request.
    requestType String
    The type of data request. Must be dataProjection. Valid values are dataProjection.
    limit Number
    Maximum number of data points to return.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionArgs

    Dimensions List<PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension>
    List of dimension mappings for the projection.
    Type string
    Type of the projection. Must be pointPlot. Valid values are pointPlot.
    ExtraColumns List<string>
    Additional columns to include in the projection.
    Dimensions []PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension
    List of dimension mappings for the projection.
    Type string
    Type of the projection. Must be pointPlot. Valid values are pointPlot.
    ExtraColumns []string
    Additional columns to include in the projection.
    dimensions list(object)
    List of dimension mappings for the projection.
    type string
    Type of the projection. Must be pointPlot. Valid values are pointPlot.
    extra_columns list(string)
    Additional columns to include in the projection.
    dimensions List<PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension>
    List of dimension mappings for the projection.
    type String
    Type of the projection. Must be pointPlot. Valid values are pointPlot.
    extraColumns List<String>
    Additional columns to include in the projection.
    dimensions PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension[]
    List of dimension mappings for the projection.
    type string
    Type of the projection. Must be pointPlot. Valid values are pointPlot.
    extraColumns string[]
    Additional columns to include in the projection.
    dimensions Sequence[PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension]
    List of dimension mappings for the projection.
    type str
    Type of the projection. Must be pointPlot. Valid values are pointPlot.
    extra_columns Sequence[str]
    Additional columns to include in the projection.
    dimensions List<Property Map>
    List of dimension mappings for the projection.
    type String
    Type of the projection. Must be pointPlot. Valid values are pointPlot.
    extraColumns List<String>
    Additional columns to include in the projection.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimensionArgs

    Column string
    Source column name from the dataset.
    Dimension string
    Dimension of the point plot. Valid values are group, time, y, radius.
    Alias string
    Alias for the column.
    Column string
    Source column name from the dataset.
    Dimension string
    Dimension of the point plot. Valid values are group, time, y, radius.
    Alias string
    Alias for the column.
    column string
    Source column name from the dataset.
    dimension string
    Dimension of the point plot. Valid values are group, time, y, radius.
    alias string
    Alias for the column.
    column String
    Source column name from the dataset.
    dimension String
    Dimension of the point plot. Valid values are group, time, y, radius.
    alias String
    Alias for the column.
    column string
    Source column name from the dataset.
    dimension string
    Dimension of the point plot. Valid values are group, time, y, radius.
    alias string
    Alias for the column.
    column str
    Source column name from the dataset.
    dimension str
    Dimension of the point plot. Valid values are group, time, y, radius.
    alias str
    Alias for the column.
    column String
    Source column name from the dataset.
    dimension String
    Dimension of the point plot. Valid values are group, time, y, radius.
    alias String
    Alias for the column.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQueryArgs

    DataSource string
    Data source for the query (for example, logs).
    QueryString string
    The query string to filter events.
    Indexes List<string>
    List of indexes to query.
    Storage string
    Storage location for the query.
    DataSource string
    Data source for the query (for example, logs).
    QueryString string
    The query string to filter events.
    Indexes []string
    List of indexes to query.
    Storage string
    Storage location for the query.
    data_source string
    Data source for the query (for example, logs).
    query_string string
    The query string to filter events.
    indexes list(string)
    List of indexes to query.
    storage string
    Storage location for the query.
    dataSource String
    Data source for the query (for example, logs).
    queryString String
    The query string to filter events.
    indexes List<String>
    List of indexes to query.
    storage String
    Storage location for the query.
    dataSource string
    Data source for the query (for example, logs).
    queryString string
    The query string to filter events.
    indexes string[]
    List of indexes to query.
    storage string
    Storage location for the query.
    data_source str
    Data source for the query (for example, logs).
    query_string str
    The query string to filter events.
    indexes Sequence[str]
    List of indexes to query.
    storage str
    Storage location for the query.
    dataSource String
    Data source for the query (for example, logs).
    queryString String
    The query string to filter events.
    indexes List<String>
    List of indexes to query.
    storage String
    Storage location for the query.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxisArgs

    IncludeZero bool
    Set to true to include zero.
    Label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    Max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    Min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    Scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    IncludeZero bool
    Set to true to include zero.
    Label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    Max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    Min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    Scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    include_zero bool
    Set to true to include zero.
    label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero Boolean
    Set to true to include zero.
    label String
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max String
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min String
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale String
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero boolean
    Set to true to include zero.
    label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    include_zero bool
    Set to true to include zero.
    label str
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max str
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min str
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale str
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero Boolean
    Set to true to include zero.
    label String
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max String
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min String
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale String
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinition, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionArgs

    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HasSearchBar string
    Controls the display of the search bar. Valid values are always, never, auto.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the request block).
    Time PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HasSearchBar string
    Controls the display of the search bar. Valid values are always, never, auto.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the request block).
    Time PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    has_search_bar string
    Controls the display of the search bar. Valid values are always, never, auto.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests list(object)
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the request block).
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hasSearchBar String
    Controls the display of the search bar. Valid values are always, never, auto.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the request block).
    time PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    customLinks PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hasSearchBar string
    Controls the display of the search bar. Valid values are always, never, auto.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequest[]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the request block).
    time PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    has_search_bar str
    Controls the display of the search bar. Valid values are always, never, auto.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequest]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the request block).
    time PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hasSearchBar String
    Controls the display of the search bar. Valid values are always, never, auto.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the request block).
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestArgs

    Aggregator string
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    Alias string
    The alias for the column name (defaults to metric name).
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ApmStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQuery
    The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    CellDisplayModes List<string>
    A list of display modes for each table cell. Valid values are number, bar.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormula>
    A list of formulas to use in the widget.
    Limit int
    For metric queries, the number of lines to show in the table. Only one request should have this property.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Order string
    The sort order for the rows. Valid values are asc, desc.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    TextFormats List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormat>
    Text formats define how to format text in table widget content. Multiple textFormats blocks are allowed using the structure below. This resource is in beta and is subject to change.
    Aggregator string
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    Alias string
    The alias for the column name (defaults to metric name).
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ApmStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQuery
    The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    CellDisplayModes []string
    A list of display modes for each table cell. Valid values are number, bar.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestConditionalFormat
    Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Formulas []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormula
    A list of formulas to use in the widget.
    Limit int
    For metric queries, the number of lines to show in the table. Only one request should have this property.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Order string
    The sort order for the rows. Valid values are asc, desc.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    TextFormats []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormat
    Text formats define how to format text in table widget content. Multiple textFormats blocks are allowed using the structure below. This resource is in beta and is subject to change.
    aggregator string
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    alias string
    The alias for the column name (defaults to metric name).
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apm_stats_query object
    The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    cell_display_modes list(string)
    A list of display modes for each table cell. Valid values are number, bar.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    formulas list(object)
    A list of formulas to use in the widget.
    limit number
    For metric queries, the number of lines to show in the table. Only one request should have this property.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    order string
    The sort order for the rows. Valid values are asc, desc.
    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    text_formats list(object)
    Text formats define how to format text in table widget content. Multiple textFormats blocks are allowed using the structure below. This resource is in beta and is subject to change.
    aggregator String
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    alias String
    The alias for the column name (defaults to metric name).
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQuery
    The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    cellDisplayModes List<String>
    A list of display modes for each table cell. Valid values are number, bar.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    formulas List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormula>
    A list of formulas to use in the widget.
    limit Integer
    For metric queries, the number of lines to show in the table. Only one request should have this property.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    order String
    The sort order for the rows. Valid values are asc, desc.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    textFormats List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormat>
    Text formats define how to format text in table widget content. Multiple textFormats blocks are allowed using the structure below. This resource is in beta and is subject to change.
    aggregator string
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    alias string
    The alias for the column name (defaults to metric name).
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQuery
    The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    cellDisplayModes string[]
    A list of display modes for each table cell. Valid values are number, bar.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    formulas PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormula[]
    A list of formulas to use in the widget.
    limit number
    For metric queries, the number of lines to show in the table. Only one request should have this property.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    order string
    The sort order for the rows. Valid values are asc, desc.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    textFormats PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormat[]
    Text formats define how to format text in table widget content. Multiple textFormats blocks are allowed using the structure below. This resource is in beta and is subject to change.
    aggregator str
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    alias str
    The alias for the column name (defaults to metric name).
    apm_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apm_stats_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQuery
    The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    cell_display_modes Sequence[str]
    A list of display modes for each table cell. Valid values are number, bar.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormula]
    A list of formulas to use in the widget.
    limit int
    For metric queries, the number of lines to show in the table. Only one request should have this property.
    log_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    order str
    The sort order for the rows. Valid values are asc, desc.
    process_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    text_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormat]
    Text formats define how to format text in table widget content. Multiple textFormats blocks are allowed using the structure below. This resource is in beta and is subject to change.
    aggregator String
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    alias String
    The alias for the column name (defaults to metric name).
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    apmStatsQuery Property Map
    The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    cellDisplayModes List<String>
    A list of display modes for each table cell. Valid values are number, bar.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    formulas List<Property Map>
    A list of formulas to use in the widget.
    limit Number
    For metric queries, the number of lines to show in the table. Only one request should have this property.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    order String
    The sort order for the rows. Valid values are asc, desc.
    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    textFormats List<Property Map>
    Text formats define how to format text in table widget content. Multiple textFormats blocks are allowed using the structure below. This resource is in beta and is subject to change.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryArgs

    Env string
    The environment name.
    Name string
    The operation name associated with the service.
    PrimaryTag string
    The organization's host group name and value.
    RowType string
    The level of detail for the request. Valid values are service, resource, span.
    Service string
    The service name.
    Columns List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryColumn>
    Column properties used by the front end for display.
    Resource string
    The resource name.
    Env string
    The environment name.
    Name string
    The operation name associated with the service.
    PrimaryTag string
    The organization's host group name and value.
    RowType string
    The level of detail for the request. Valid values are service, resource, span.
    Service string
    The service name.
    Columns []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryColumn
    Column properties used by the front end for display.
    Resource string
    The resource name.
    env string
    The environment name.
    name string
    The operation name associated with the service.
    primary_tag string
    The organization's host group name and value.
    row_type string
    The level of detail for the request. Valid values are service, resource, span.
    service string
    The service name.
    columns list(object)
    Column properties used by the front end for display.
    resource string
    The resource name.
    env String
    The environment name.
    name String
    The operation name associated with the service.
    primaryTag String
    The organization's host group name and value.
    rowType String
    The level of detail for the request. Valid values are service, resource, span.
    service String
    The service name.
    columns List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryColumn>
    Column properties used by the front end for display.
    resource String
    The resource name.
    env string
    The environment name.
    name string
    The operation name associated with the service.
    primaryTag string
    The organization's host group name and value.
    rowType string
    The level of detail for the request. Valid values are service, resource, span.
    service string
    The service name.
    columns PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryColumn[]
    Column properties used by the front end for display.
    resource string
    The resource name.
    env str
    The environment name.
    name str
    The operation name associated with the service.
    primary_tag str
    The organization's host group name and value.
    row_type str
    The level of detail for the request. Valid values are service, resource, span.
    service str
    The service name.
    columns Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryColumn]
    Column properties used by the front end for display.
    resource str
    The resource name.
    env String
    The environment name.
    name String
    The operation name associated with the service.
    primaryTag String
    The organization's host group name and value.
    rowType String
    The level of detail for the request. Valid values are service, resource, span.
    service String
    The service name.
    columns List<Property Map>
    Column properties used by the front end for display.
    resource String
    The resource name.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryColumn, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryColumnArgs

    Name string
    The column name.
    Alias string
    A user-assigned alias for the column.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Name string
    The column name.
    Alias string
    A user-assigned alias for the column.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    name string
    The column name.
    alias string
    A user-assigned alias for the column.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order string
    Widget sorting methods. Valid values are asc, desc.
    name String
    The column name.
    alias String
    A user-assigned alias for the column.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order String
    Widget sorting methods. Valid values are asc, desc.
    name string
    The column name.
    alias string
    A user-assigned alias for the column.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order string
    Widget sorting methods. Valid values are asc, desc.
    name str
    The column name.
    alias str
    A user-assigned alias for the column.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order str
    Widget sorting methods. Valid values are asc, desc.
    name String
    The column name.
    alias String
    A user-assigned alias for the column.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, trend.
    order String
    Widget sorting methods. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatArgs

    text_formats list(object)
    The text format to apply to the items in a table widget column.
    textFormats List<Property Map>
    The text format to apply to the items in a table widget column.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatArgs

    Match PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatMatch
    Match rule for the table widget text format.
    CustomBgColor string
    The custom color palette to apply to the background.
    CustomFgColor string
    The custom color palette to apply to the foreground text.
    Palette string
    The color palette to apply. Valid values are whiteOnRed, whiteOnYellow, whiteOnGreen, blackOnLightRed, blackOnLightYellow, blackOnLightGreen, redOnWhite, yellowOnWhite, greenOnWhite, customBg, customText.
    Replace PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplace
    Match rule for the table widget text format.
    Match PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatMatch
    Match rule for the table widget text format.
    CustomBgColor string
    The custom color palette to apply to the background.
    CustomFgColor string
    The custom color palette to apply to the foreground text.
    Palette string
    The color palette to apply. Valid values are whiteOnRed, whiteOnYellow, whiteOnGreen, blackOnLightRed, blackOnLightYellow, blackOnLightGreen, redOnWhite, yellowOnWhite, greenOnWhite, customBg, customText.
    Replace PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplace
    Match rule for the table widget text format.
    match object
    Match rule for the table widget text format.
    custom_bg_color string
    The custom color palette to apply to the background.
    custom_fg_color string
    The custom color palette to apply to the foreground text.
    palette string
    The color palette to apply. Valid values are whiteOnRed, whiteOnYellow, whiteOnGreen, blackOnLightRed, blackOnLightYellow, blackOnLightGreen, redOnWhite, yellowOnWhite, greenOnWhite, customBg, customText.
    replace object
    Match rule for the table widget text format.
    match PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatMatch
    Match rule for the table widget text format.
    customBgColor String
    The custom color palette to apply to the background.
    customFgColor String
    The custom color palette to apply to the foreground text.
    palette String
    The color palette to apply. Valid values are whiteOnRed, whiteOnYellow, whiteOnGreen, blackOnLightRed, blackOnLightYellow, blackOnLightGreen, redOnWhite, yellowOnWhite, greenOnWhite, customBg, customText.
    replace PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplace
    Match rule for the table widget text format.
    match PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatMatch
    Match rule for the table widget text format.
    customBgColor string
    The custom color palette to apply to the background.
    customFgColor string
    The custom color palette to apply to the foreground text.
    palette string
    The color palette to apply. Valid values are whiteOnRed, whiteOnYellow, whiteOnGreen, blackOnLightRed, blackOnLightYellow, blackOnLightGreen, redOnWhite, yellowOnWhite, greenOnWhite, customBg, customText.
    replace PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplace
    Match rule for the table widget text format.
    match PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatMatch
    Match rule for the table widget text format.
    custom_bg_color str
    The custom color palette to apply to the background.
    custom_fg_color str
    The custom color palette to apply to the foreground text.
    palette str
    The color palette to apply. Valid values are whiteOnRed, whiteOnYellow, whiteOnGreen, blackOnLightRed, blackOnLightYellow, blackOnLightGreen, redOnWhite, yellowOnWhite, greenOnWhite, customBg, customText.
    replace PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplace
    Match rule for the table widget text format.
    match Property Map
    Match rule for the table widget text format.
    customBgColor String
    The custom color palette to apply to the background.
    customFgColor String
    The custom color palette to apply to the foreground text.
    palette String
    The color palette to apply. Valid values are whiteOnRed, whiteOnYellow, whiteOnGreen, blackOnLightRed, blackOnLightYellow, blackOnLightGreen, redOnWhite, yellowOnWhite, greenOnWhite, customBg, customText.
    replace Property Map
    Match rule for the table widget text format.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatMatch, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatMatchArgs

    Type string
    Match or compare option. Valid values are is, isNot, contains, doesNotContain, startsWith, endsWith.
    Value string
    Table Widget Match String.
    Type string
    Match or compare option. Valid values are is, isNot, contains, doesNotContain, startsWith, endsWith.
    Value string
    Table Widget Match String.
    type string
    Match or compare option. Valid values are is, isNot, contains, doesNotContain, startsWith, endsWith.
    value string
    Table Widget Match String.
    type String
    Match or compare option. Valid values are is, isNot, contains, doesNotContain, startsWith, endsWith.
    value String
    Table Widget Match String.
    type string
    Match or compare option. Valid values are is, isNot, contains, doesNotContain, startsWith, endsWith.
    value string
    Table Widget Match String.
    type str
    Match or compare option. Valid values are is, isNot, contains, doesNotContain, startsWith, endsWith.
    value str
    Table Widget Match String.
    type String
    Match or compare option. Valid values are is, isNot, contains, doesNotContain, startsWith, endsWith.
    value String
    Table Widget Match String.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplace, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplaceArgs

    Type string
    Table widget text format replace all type. Valid values are all, substring.
    With string
    Table Widget Match String.
    Substring string
    Text that will be replaced. Must be used with type substring.
    Type string
    Table widget text format replace all type. Valid values are all, substring.
    With string
    Table Widget Match String.
    Substring string
    Text that will be replaced. Must be used with type substring.
    type string
    Table widget text format replace all type. Valid values are all, substring.
    with string
    Table Widget Match String.
    substring string
    Text that will be replaced. Must be used with type substring.
    type String
    Table widget text format replace all type. Valid values are all, substring.
    with String
    Table Widget Match String.
    substring String
    Text that will be replaced. Must be used with type substring.
    type string
    Table widget text format replace all type. Valid values are all, substring.
    with string
    Table Widget Match String.
    substring string
    Text that will be replaced. Must be used with type substring.
    type str
    Table widget text format replace all type. Valid values are all, substring.
    with_ str
    Table Widget Match String.
    substring str
    Text that will be replaced. Must be used with type substring.
    type String
    Table widget text format replace all type. Valid values are all, substring.
    with String
    Table Widget Match String.
    substring String
    Text that will be replaced. Must be used with type substring.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinition, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionArgs

    Autoscale bool
    A Boolean indicating whether to automatically scale the tile.
    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    CustomUnit string
    Display a unit of your choice on the widget.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Precision int
    Number of decimals to show. If not defined, the widget uses the raw value.
    Requests List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    TextAlign string
    The alignment of the widget's text. Valid values are center, left, right.
    Time PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    TimeseriesBackground PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackground
    Set a timeseries on the widget background.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Autoscale bool
    A Boolean indicating whether to automatically scale the tile.
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    CustomUnit string
    Display a unit of your choice on the widget.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Precision int
    Number of decimals to show. If not defined, the widget uses the raw value.
    Requests []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequest
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    TextAlign string
    The alignment of the widget's text. Valid values are center, left, right.
    Time PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    TimeseriesBackground PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackground
    Set a timeseries on the widget background.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    autoscale bool
    A Boolean indicating whether to automatically scale the tile.
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    custom_unit string
    Display a unit of your choice on the widget.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision number
    Number of decimals to show. If not defined, the widget uses the raw value.
    requests list(object)
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    text_align string
    The alignment of the widget's text. Valid values are center, left, right.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    timeseries_background object
    Set a timeseries on the widget background.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    autoscale Boolean
    A Boolean indicating whether to automatically scale the tile.
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    customUnit String
    Display a unit of your choice on the widget.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision Integer
    Number of decimals to show. If not defined, the widget uses the raw value.
    requests List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    textAlign String
    The alignment of the widget's text. Valid values are center, left, right.
    time PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    timeseriesBackground PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackground
    Set a timeseries on the widget background.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    autoscale boolean
    A Boolean indicating whether to automatically scale the tile.
    customLinks PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    customUnit string
    Display a unit of your choice on the widget.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision number
    Number of decimals to show. If not defined, the widget uses the raw value.
    requests PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequest[]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    textAlign string
    The alignment of the widget's text. Valid values are center, left, right.
    time PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    timeseriesBackground PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackground
    Set a timeseries on the widget background.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    autoscale bool
    A Boolean indicating whether to automatically scale the tile.
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    custom_unit str
    Display a unit of your choice on the widget.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision int
    Number of decimals to show. If not defined, the widget uses the raw value.
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequest]
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    text_align str
    The alignment of the widget's text. Valid values are center, left, right.
    time PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    timeseries_background PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackground
    Set a timeseries on the widget background.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    autoscale Boolean
    A Boolean indicating whether to automatically scale the tile.
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    customUnit String
    Display a unit of your choice on the widget.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    precision Number
    Number of decimals to show. If not defined, the widget uses the raw value.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget. Multiple request blocks are allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery or processQuery is required within the request block).
    textAlign String
    The alignment of the widget's text. Valid values are center, left, right.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    timeseriesBackground Property Map
    Set a timeseries on the widget background.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestArgs

    Aggregator string
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    AuditQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormula>
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Aggregator string
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    AuditQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Formulas []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormula
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator string
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    audit_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    formulas list(object)
    A list of formulas to use in the widget.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator String
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    auditQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    formulas List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormula>
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator string
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    auditQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    formulas PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormula[]
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator str
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apm_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    audit_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormula]
    A list of formulas to use in the widget.
    log_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator String
    The aggregator to use for time aggregation. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    auditQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    formulas List<Property Map>
    A list of formulas to use in the widget.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackground, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundArgs

    Type string
    Whether the Timeseries is made using an area or bars. Valid values are area, bars.
    Yaxis PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    Type string
    Whether the Timeseries is made using an area or bars. Valid values are area, bars.
    Yaxis PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    type string
    Whether the Timeseries is made using an area or bars. Valid values are area, bars.
    yaxis object
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    type String
    Whether the Timeseries is made using an area or bars. Valid values are area, bars.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    type string
    Whether the Timeseries is made using an area or bars. Valid values are area, bars.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    type str
    Whether the Timeseries is made using an area or bars. Valid values are area, bars.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    type String
    Whether the Timeseries is made using an area or bars. Valid values are area, bars.
    yaxis Property Map
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.

    PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundYaxis, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundYaxisArgs

    IncludeZero bool
    Set to true to include zero.
    Label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    Max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    Min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    Scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    IncludeZero bool
    Set to true to include zero.
    Label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    Max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    Min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    Scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    include_zero bool
    Set to true to include zero.
    label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero Boolean
    Set to true to include zero.
    label String
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max String
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min String
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale String
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero boolean
    Set to true to include zero.
    label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    include_zero bool
    Set to true to include zero.
    label str
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max str
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min str
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale str
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero Boolean
    Set to true to include zero.
    label String
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max String
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min String
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale String
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).

    PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinition, PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionArgs

    WorkflowId string
    Workflow ID
    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    Inputs List<PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInput>
    Array of workflow inputs to map to dashboard template variables.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    WorkflowId string
    Workflow ID
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    Inputs []PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInputType
    Array of workflow inputs to map to dashboard template variables.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    workflow_id string
    Workflow ID
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    inputs list(object)
    Array of workflow inputs to map to dashboard template variables.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    workflowId String
    Workflow ID
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    inputs List<PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInput>
    Array of workflow inputs to map to dashboard template variables.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    workflowId string
    Workflow ID
    customLinks PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    inputs PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInput[]
    Array of workflow inputs to map to dashboard template variables.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    workflow_id str
    Workflow ID
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    inputs Sequence[PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInput]
    Array of workflow inputs to map to dashboard template variables.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    workflowId String
    Workflow ID
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    inputs List<Property Map>
    Array of workflow inputs to map to dashboard template variables.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInput, PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInputArgs

    Name string
    Name of the workflow input.
    Value string
    Dashboard template variable. Can be suffixed with .value or .key.
    Name string
    Name of the workflow input.
    Value string
    Dashboard template variable. Can be suffixed with .value or .key.
    name string
    Name of the workflow input.
    value string
    Dashboard template variable. Can be suffixed with .value or .key.
    name String
    Name of the workflow input.
    value String
    Dashboard template variable. Can be suffixed with .value or .key.
    name string
    Name of the workflow input.
    value string
    Dashboard template variable. Can be suffixed with .value or .key.
    name str
    Name of the workflow input.
    value str
    Dashboard template variable. Can be suffixed with .value or .key.
    name String
    Name of the workflow input.
    value String
    Dashboard template variable. Can be suffixed with .value or .key.

    PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinition, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionArgs

    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests List<PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequest>
    A nested block describing the request to use when displaying the widget.
    ShowOtherLinks bool
    Whether to show links for the 'other' category.
    SortNodes bool
    Whether to sort nodes in the Sankey diagram.
    Time PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests []PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequest
    A nested block describing the request to use when displaying the widget.
    ShowOtherLinks bool
    Whether to show links for the 'other' category.
    SortNodes bool
    Whether to sort nodes in the Sankey diagram.
    Time PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests list(object)
    A nested block describing the request to use when displaying the widget.
    show_other_links bool
    Whether to show links for the 'other' category.
    sort_nodes bool
    Whether to sort nodes in the Sankey diagram.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequest>
    A nested block describing the request to use when displaying the widget.
    showOtherLinks Boolean
    Whether to show links for the 'other' category.
    sortNodes Boolean
    Whether to sort nodes in the Sankey diagram.
    time PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequest[]
    A nested block describing the request to use when displaying the widget.
    showOtherLinks boolean
    Whether to show links for the 'other' category.
    sortNodes boolean
    Whether to sort nodes in the Sankey diagram.
    time PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequest]
    A nested block describing the request to use when displaying the widget.
    show_other_links bool
    Whether to show links for the 'other' category.
    sort_nodes bool
    Whether to sort nodes in the Sankey diagram.
    time PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget.
    showOtherLinks Boolean
    Whether to show links for the 'other' category.
    sortNodes Boolean
    Whether to sort nodes in the Sankey diagram.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestArgs

    network_request object
    Network request for the Sankey widget.
    rum_request object
    RUM request for the Sankey widget.
    networkRequest Property Map
    Network request for the Sankey widget.
    rumRequest Property Map
    RUM request for the Sankey widget.

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequest, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestArgs

    query object
    The query for the Sankey network request.
    query Property Map
    The query for the Sankey network request.

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryArgs

    DataSource string
    The data source for the Sankey network query. Valid values are networkDeviceFlows, network.
    GroupBies List<string>
    Fields to group by.
    Limit int
    Maximum number of results.
    QueryString string
    The search query string.
    Compute PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryCompute
    Compute aggregation configuration.
    Mode string
    The mode for the Sankey network query. Valid values are target.
    ShouldExcludeMissing bool
    Whether to exclude missing values.
    Sort PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuerySort
    Sort configuration.
    DataSource string
    The data source for the Sankey network query. Valid values are networkDeviceFlows, network.
    GroupBies []string
    Fields to group by.
    Limit int
    Maximum number of results.
    QueryString string
    The search query string.
    Compute PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryCompute
    Compute aggregation configuration.
    Mode string
    The mode for the Sankey network query. Valid values are target.
    ShouldExcludeMissing bool
    Whether to exclude missing values.
    Sort PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuerySort
    Sort configuration.
    data_source string
    The data source for the Sankey network query. Valid values are networkDeviceFlows, network.
    group_bies list(string)
    Fields to group by.
    limit number
    Maximum number of results.
    query_string string
    The search query string.
    compute object
    Compute aggregation configuration.
    mode string
    The mode for the Sankey network query. Valid values are target.
    should_exclude_missing bool
    Whether to exclude missing values.
    sort object
    Sort configuration.
    dataSource String
    The data source for the Sankey network query. Valid values are networkDeviceFlows, network.
    groupBies List<String>
    Fields to group by.
    limit Integer
    Maximum number of results.
    queryString String
    The search query string.
    compute PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryCompute
    Compute aggregation configuration.
    mode String
    The mode for the Sankey network query. Valid values are target.
    shouldExcludeMissing Boolean
    Whether to exclude missing values.
    sort PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuerySort
    Sort configuration.
    dataSource string
    The data source for the Sankey network query. Valid values are networkDeviceFlows, network.
    groupBies string[]
    Fields to group by.
    limit number
    Maximum number of results.
    queryString string
    The search query string.
    compute PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryCompute
    Compute aggregation configuration.
    mode string
    The mode for the Sankey network query. Valid values are target.
    shouldExcludeMissing boolean
    Whether to exclude missing values.
    sort PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuerySort
    Sort configuration.
    data_source str
    The data source for the Sankey network query. Valid values are networkDeviceFlows, network.
    group_bies Sequence[str]
    Fields to group by.
    limit int
    Maximum number of results.
    query_string str
    The search query string.
    compute PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryCompute
    Compute aggregation configuration.
    mode str
    The mode for the Sankey network query. Valid values are target.
    should_exclude_missing bool
    Whether to exclude missing values.
    sort PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuerySort
    Sort configuration.
    dataSource String
    The data source for the Sankey network query. Valid values are networkDeviceFlows, network.
    groupBies List<String>
    Fields to group by.
    limit Number
    Maximum number of results.
    queryString String
    The search query string.
    compute Property Map
    Compute aggregation configuration.
    mode String
    The mode for the Sankey network query. Valid values are target.
    shouldExcludeMissing Boolean
    Whether to exclude missing values.
    sort Property Map
    Sort configuration.

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryComputeArgs

    Aggregation string
    The aggregation method.
    Metric string
    The metric to aggregate.
    Aggregation string
    The aggregation method.
    Metric string
    The metric to aggregate.
    aggregation string
    The aggregation method.
    metric string
    The metric to aggregate.
    aggregation String
    The aggregation method.
    metric String
    The metric to aggregate.
    aggregation string
    The aggregation method.
    metric string
    The metric to aggregate.
    aggregation str
    The aggregation method.
    metric str
    The metric to aggregate.
    aggregation String
    The aggregation method.
    metric String
    The metric to aggregate.

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuerySort, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuerySortArgs

    Field string
    Field to sort by.
    Order string
    Sort direction. Valid values are asc, desc.
    Field string
    Field to sort by.
    Order string
    Sort direction. Valid values are asc, desc.
    field string
    Field to sort by.
    order string
    Sort direction. Valid values are asc, desc.
    field String
    Field to sort by.
    order String
    Sort direction. Valid values are asc, desc.
    field string
    Field to sort by.
    order string
    Sort direction. Valid values are asc, desc.
    field str
    Field to sort by.
    order str
    Sort direction. Valid values are asc, desc.
    field String
    Field to sort by.
    order String
    Sort direction. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequest, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequestArgs

    query object
    The query for the Sankey RUM request.
    query Property Map
    The query for the Sankey RUM request.

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequestQueryArgs

    DataSource string
    The data source for the Sankey RUM query. Valid values are rum, productAnalytics.
    Mode string
    The mode for the Sankey RUM query. Valid values are source, target.
    QueryString string
    The search query string.
    EntriesPerStep int
    Entries per step.
    NumberOfSteps int
    Number of steps.
    Source string
    Source field.
    SubqueryId string
    Subquery ID.
    Target string
    Target field.
    DataSource string
    The data source for the Sankey RUM query. Valid values are rum, productAnalytics.
    Mode string
    The mode for the Sankey RUM query. Valid values are source, target.
    QueryString string
    The search query string.
    EntriesPerStep int
    Entries per step.
    NumberOfSteps int
    Number of steps.
    Source string
    Source field.
    SubqueryId string
    Subquery ID.
    Target string
    Target field.
    data_source string
    The data source for the Sankey RUM query. Valid values are rum, productAnalytics.
    mode string
    The mode for the Sankey RUM query. Valid values are source, target.
    query_string string
    The search query string.
    entries_per_step number
    Entries per step.
    number_of_steps number
    Number of steps.
    source string
    Source field.
    subquery_id string
    Subquery ID.
    target string
    Target field.
    dataSource String
    The data source for the Sankey RUM query. Valid values are rum, productAnalytics.
    mode String
    The mode for the Sankey RUM query. Valid values are source, target.
    queryString String
    The search query string.
    entriesPerStep Integer
    Entries per step.
    numberOfSteps Integer
    Number of steps.
    source String
    Source field.
    subqueryId String
    Subquery ID.
    target String
    Target field.
    dataSource string
    The data source for the Sankey RUM query. Valid values are rum, productAnalytics.
    mode string
    The mode for the Sankey RUM query. Valid values are source, target.
    queryString string
    The search query string.
    entriesPerStep number
    Entries per step.
    numberOfSteps number
    Number of steps.
    source string
    Source field.
    subqueryId string
    Subquery ID.
    target string
    Target field.
    data_source str
    The data source for the Sankey RUM query. Valid values are rum, productAnalytics.
    mode str
    The mode for the Sankey RUM query. Valid values are source, target.
    query_string str
    The search query string.
    entries_per_step int
    Entries per step.
    number_of_steps int
    Number of steps.
    source str
    Source field.
    subquery_id str
    Subquery ID.
    target str
    Target field.
    dataSource String
    The data source for the Sankey RUM query. Valid values are rum, productAnalytics.
    mode String
    The mode for the Sankey RUM query. Valid values are source, target.
    queryString String
    The search query string.
    entriesPerStep Number
    Entries per step.
    numberOfSteps Number
    Number of steps.
    source String
    Source field.
    subqueryId String
    Subquery ID.
    target String
    Target field.

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinition, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionArgs

    ColorByGroups List<string>
    List of groups used for colors.
    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Request PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequest
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed using the structure below.
    Time PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Xaxis PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    Yaxis PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    ColorByGroups []string
    List of groups used for colors.
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Request PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequest
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed using the structure below.
    Time PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Xaxis PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    Yaxis PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    color_by_groups list(string)
    List of groups used for colors.
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request object
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed using the structure below.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    xaxis object
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis object
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    colorByGroups List<String>
    List of groups used for colors.
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequest
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed using the structure below.
    time PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    colorByGroups string[]
    List of groups used for colors.
    customLinks PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequest
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed using the structure below.
    time PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    color_by_groups Sequence[str]
    List of groups used for colors.
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequest
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed using the structure below.
    time PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    xaxis PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxis
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxis
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    colorByGroups List<String>
    List of groups used for colors.
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    request Property Map
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed using the structure below.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    xaxis Property Map
    A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
    yaxis Property Map
    A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestArgs

    ScatterplotTables List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTable>
    Scatterplot request containing formulas and functions.
    X PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestX
    The query used for the X-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    Y PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestY
    The query used for the Y-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    ScatterplotTables []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTable
    Scatterplot request containing formulas and functions.
    X PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestX
    The query used for the X-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    Y PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestY
    The query used for the Y-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    scatterplot_tables list(object)
    Scatterplot request containing formulas and functions.
    x object
    The query used for the X-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    y object
    The query used for the Y-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    scatterplotTables List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTable>
    Scatterplot request containing formulas and functions.
    x PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestX
    The query used for the X-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    y PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestY
    The query used for the Y-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    scatterplotTables PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTable[]
    Scatterplot request containing formulas and functions.
    x PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestX
    The query used for the X-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    y PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestY
    The query used for the Y-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    scatterplot_tables Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTable]
    Scatterplot request containing formulas and functions.
    x PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestX
    The query used for the X-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    y PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestY
    The query used for the Y-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    scatterplotTables List<Property Map>
    Scatterplot request containing formulas and functions.
    x Property Map
    The query used for the X-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).
    y Property Map
    The query used for the Y-Axis. Exactly one nested block is allowed using the structure below (exactly one of q, apmQuery, logQuery, rumQuery, securityQuery, apmStatsQuery or processQuery is required within the block).

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTable, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableArgs

    formulas list(object)
    A list of formulas to use in the widget.
    queries list(object)
    A list of queries to use in the widget.
    formulas List<Property Map>
    A list of formulas to use in the widget.
    queries List<Property Map>
    A list of queries to use in the widget.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableFormula, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableFormulaArgs

    Dimension string
    Dimension of the Scatterplot. Valid values are x, y, radius, color.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    Dimension string
    Dimension of the Scatterplot. Valid values are x, y, radius, color.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    dimension string
    Dimension of the Scatterplot. Valid values are x, y, radius, color.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    dimension String
    Dimension of the Scatterplot. Valid values are x, y, radius, color.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    dimension string
    Dimension of the Scatterplot. Valid values are x, y, radius, color.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    dimension str
    Dimension of the Scatterplot. Valid values are x, y, radius, color.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    dimension String
    Dimension of the Scatterplot. Valid values are x, y, radius, color.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestX, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXArgs

    Aggregator string
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormula>
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Aggregator string
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormula
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator string
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas list(object)
    A list of formulas to use in the widget.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator String
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormula>
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator string
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormula[]
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator str
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apm_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormula]
    A list of formulas to use in the widget.
    log_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator String
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<Property Map>
    A list of formulas to use in the widget.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormula, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestY, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYArgs

    Aggregator string
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormula>
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Aggregator string
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormula
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator string
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas list(object)
    A list of formulas to use in the widget.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator String
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormula>
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator string
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormula[]
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator str
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apm_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormula]
    A list of formulas to use in the widget.
    log_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    aggregator String
    Aggregator used for the request. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<Property Map>
    A list of formulas to use in the widget.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormula, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYProcessQueryArgs

    Metric string
    Your chosen metric.
    FilterBies List<string>
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    Metric string
    Your chosen metric.
    FilterBies []string
    A list of processes.
    Limit int
    The max number of items in the filter list.
    SearchBy string
    Your chosen search term.
    metric string
    Your chosen metric.
    filter_bies list(string)
    A list of processes.
    limit number
    The max number of items in the filter list.
    search_by string
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Integer
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.
    metric string
    Your chosen metric.
    filterBies string[]
    A list of processes.
    limit number
    The max number of items in the filter list.
    searchBy string
    Your chosen search term.
    metric str
    Your chosen metric.
    filter_bies Sequence[str]
    A list of processes.
    limit int
    The max number of items in the filter list.
    search_by str
    Your chosen search term.
    metric String
    Your chosen metric.
    filterBies List<String>
    A list of processes.
    limit Number
    The max number of items in the filter list.
    searchBy String
    Your chosen search term.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryArgs

    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQuery
    The SLO query using formulas and functions.
    ApmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    ApmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    CloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    EventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuery
    A timeseries formula and functions events query.
    MetricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryMetricQuery
    A timeseries formula and functions metrics query.
    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQuery
    The process query using formulas and functions.
    SloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query object
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query object
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query object
    The Cloud Cost query using formulas and functions.
    event_query object
    A timeseries formula and functions events query.
    metric_query object
    A timeseries formula and functions metrics query.
    process_query object
    The process query using formulas and functions.
    slo_query object
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    eventQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuery
    A timeseries formula and functions events query.
    metricQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryMetricQuery
    A timeseries formula and functions metrics query.
    processQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQuery
    The process query using formulas and functions.
    sloQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQuery
    The SLO query using formulas and functions.
    apm_dependency_stats_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQuery
    The APM Dependency Stats query using formulas and functions.
    apm_resource_stats_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQuery
    The APM Resource Stats query using formulas and functions.
    cloud_cost_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQuery
    The Cloud Cost query using formulas and functions.
    event_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuery
    A timeseries formula and functions events query.
    metric_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryMetricQuery
    A timeseries formula and functions metrics query.
    process_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQuery
    The process query using formulas and functions.
    slo_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQuery
    The SLO query using formulas and functions.
    apmDependencyStatsQuery Property Map
    The APM Dependency Stats query using formulas and functions.
    apmResourceStatsQuery Property Map
    The APM Resource Stats query using formulas and functions.
    cloudCostQuery Property Map
    The Cloud Cost query using formulas and functions.
    eventQuery Property Map
    A timeseries formula and functions events query.
    metricQuery Property Map
    A timeseries formula and functions metrics query.
    processQuery Property Map
    The process query using formulas and functions.
    sloQuery Property Map
    The SLO query using formulas and functions.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQueryArgs

    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    DataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    OperationName string
    Name of operation on service.
    ResourceName string
    APM resource.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsUpstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operation_name string
    Name of operation on service.
    resource_name string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource string
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    operationName string
    Name of operation on service.
    resourceName string
    APM resource.
    service string
    APM service.
    stat string
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    data_source str
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    operation_name str
    Name of operation on service.
    resource_name str
    APM resource.
    service str
    APM service.
    stat str
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_upstream bool
    Determines whether stats for upstream or downstream dependencies should be queried.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    dataSource String
    The data source for APM Dependency Stats queries. Valid values are apmDependencyStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    operationName String
    Name of operation on service.
    resourceName String
    APM resource.
    service String
    APM service.
    stat String
    APM statistic. Valid values are avgDuration, avgRootDuration, avgSpansPerTrace, errorRate, pctExecTime, pctOfTraces, totalTracesCount.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isUpstream Boolean
    Determines whether stats for upstream or downstream dependencies should be queried.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQueryArgs

    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<string>
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    DataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    Env string
    APM environment.
    Name string
    The name of query for use in formulas.
    Service string
    APM service.
    Stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []string
    Array of fields to group results by.
    OperationName string
    Name of operation on service.
    PrimaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    PrimaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    ResourceName string
    APM resource.
    data_source string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(string)
    Array of fields to group results by.
    operation_name string
    Name of operation on service.
    primary_tag_name string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name string
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.
    dataSource string
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env string
    APM environment.
    name string
    The name of query for use in formulas.
    service string
    APM service.
    stat string
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies string[]
    Array of fields to group results by.
    operationName string
    Name of operation on service.
    primaryTagName string
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue string
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName string
    APM resource.
    data_source str
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env str
    APM environment.
    name str
    The name of query for use in formulas.
    service str
    APM service.
    stat str
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[str]
    Array of fields to group results by.
    operation_name str
    Name of operation on service.
    primary_tag_name str
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primary_tag_value str
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resource_name str
    APM resource.
    dataSource String
    The data source for APM Resource Stats queries. Valid values are apmResourceStats.
    env String
    APM environment.
    name String
    The name of query for use in formulas.
    service String
    APM service.
    stat String
    APM statistic. Valid values are errors, errorRate, hits, latencyAvg, latencyDistribution, latencyMax, latencyP50, latencyP75, latencyP90, latencyP95, latencyP99.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<String>
    Array of fields to group results by.
    operationName String
    Name of operation on service.
    primaryTagName String
    The name of the second primary tag used within APM; required when primaryTagValue is specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog.
    primaryTagValue String
    Filter APM data by the second primary tag. primaryTagName must also be specified.
    resourceName String
    APM resource.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQueryArgs

    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    Name string
    The name of the query for use in formulas.
    Query string
    Query for Cloud Cost data.
    Aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for cloud cost queries. Valid values are cloudCost.
    name string
    The name of the query for use in formulas.
    query string
    Query for Cloud Cost data.
    aggregator string
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for cloud cost queries. Valid values are cloudCost.
    name str
    The name of the query for use in formulas.
    query str
    Query for Cloud Cost data.
    aggregator str
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for cloud cost queries. Valid values are cloudCost.
    name String
    The name of the query for use in formulas.
    query String
    Query for Cloud Cost data.
    aggregator String
    The aggregation methods available for cloud cost queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryArgs

    Computes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryCompute>
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBy>
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes List<string>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    Computes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryCompute
    The compute options.
    DataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    Name string
    The name of query for use in formulas.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBy
    Group by options.
    GroupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    Indexes []string
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    Search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuerySearch
    The search options.
    Storage string
    Option for storage location. Feature in Private Beta.
    computes list(object)
    The compute options.
    data_source string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies list(object)
    Group by options.
    group_by_fields object
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes list(string)
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search object
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryCompute>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBy>
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuerySearch
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.
    computes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryCompute[]
    The compute options.
    dataSource string
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name string
    The name of query for use in formulas.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBy[]
    Group by options.
    groupByFields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes string[]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuerySearch
    The search options.
    storage string
    Option for storage location. Feature in Private Beta.
    computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryCompute]
    The compute options.
    data_source str
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name str
    The name of query for use in formulas.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBy]
    Group by options.
    group_by_fields PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFields
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes Sequence[str]
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuerySearch
    The search options.
    storage str
    Option for storage location. Feature in Private Beta.
    computes List<Property Map>
    The compute options.
    dataSource String
    The data source for event platform-based queries. Valid values are logs, spans, network, rum, securitySignals, profiles, audit, events, ciTests, ciPipelines, incidentAnalytics, productAnalytics, onCallEvents, errors, llmObservability.
    name String
    The name of query for use in formulas.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupBies List<Property Map>
    Group by options.
    groupByFields Property Map
    Alternative group-by configuration that groups by multiple event facet fields. Use this or groupBy, not both.
    indexes List<String>
    An array of index names to query in the stream. Omit or use [] to query all indexes at once.
    search Property Map
    The search options.
    storage String
    Option for storage location. Feature in Private Beta.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryComputeArgs

    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    Aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Interval int
    A time interval in milliseconds.
    Metric string
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Integer
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.
    aggregation string
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval number
    A time interval in milliseconds.
    metric string
    The measurable attribute to compute.
    aggregation str
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval int
    A time interval in milliseconds.
    metric str
    The measurable attribute to compute.
    aggregation String
    The aggregation methods for event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    interval Number
    A time interval in milliseconds.
    metric String
    The measurable attribute to compute.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByArgs

    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBySort
    The options for sorting group by results.
    Facet string
    The event facet.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    facet String
    The event facet.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet string
    The event facet.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet str
    The event facet.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBySort
    The options for sorting group by results.
    facet String
    The event facet.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFields, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsArgs

    Fields List<string>
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    Fields []string
    List of event facets to group by.
    Limit int
    The number of groups to return.
    Sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields list(string)
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort object
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Integer
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields string[]
    List of event facets to group by.
    limit number
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields Sequence[str]
    List of event facets to group by.
    limit int
    The number of groups to return.
    sort PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsSort
    The options for sorting group by results.
    fields List<String>
    List of event facets to group by.
    limit Number
    The number of groups to return.
    sort Property Map
    The options for sorting group by results.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsSort, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsSortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBySort, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBySortArgs

    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    Aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    Metric string
    The metric used for sorting group by results.
    Order string
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.
    aggregation string
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric string
    The metric used for sorting group by results.
    order string
    Direction of sort. Valid values are asc, desc.
    aggregation str
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric str
    The metric used for sorting group by results.
    order str
    Direction of sort. Valid values are asc, desc.
    aggregation String
    The aggregation methods for the event platform queries. Valid values are count, cardinality, median, pc75, pc90, pc95, pc98, pc99, sum, min, max, avg.
    metric String
    The metric used for sorting group by results.
    order String
    Direction of sort. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuerySearch, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuerySearchArgs

    Query string
    The events search string.
    Query string
    The events search string.
    query string
    The events search string.
    query String
    The events search string.
    query string
    The events search string.
    query str
    The events search string.
    query String
    The events search string.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryMetricQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryMetricQueryArgs

    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    Name string
    The name of the query for use in formulas.
    Query string
    The metrics query definition.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    DataSource string
    The data source for metrics queries. Defaults to "metrics".
    SemanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source string
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name string
    The name of the query for use in formulas.
    query string
    The metrics query definition.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource string
    The data source for metrics queries. Defaults to "metrics".
    semanticMode string
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name str
    The name of the query for use in formulas.
    query str
    The metrics query definition.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    data_source str
    The data source for metrics queries. Defaults to "metrics".
    semantic_mode str
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.
    name String
    The name of the query for use in formulas.
    query String
    The metrics query definition.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    dataSource String
    The data source for metrics queries. Defaults to "metrics".
    semanticMode String
    Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed. Valid values are combined, native.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQueryArgs

    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters List<string>
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    DataSource string
    The data source for process queries. Valid values are process, container.
    Metric string
    The process metric name.
    Name string
    The name of query for use in formulas.
    Aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    IsNormalizedCpu bool
    Whether to normalize the CPU percentages.
    Limit int
    The number of hits to return.
    Sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    TagFilters []string
    An array of tags to filter by.
    TextFilter string
    The text to use as a filter.
    data_source string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters list(string)
    An array of tags to filter by.
    text_filter string
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Integer
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.
    dataSource string
    The data source for process queries. Valid values are process, container.
    metric string
    The process metric name.
    name string
    The name of query for use in formulas.
    aggregator string
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu boolean
    Whether to normalize the CPU percentages.
    limit number
    The number of hits to return.
    sort string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters string[]
    An array of tags to filter by.
    textFilter string
    The text to use as a filter.
    data_source str
    The data source for process queries. Valid values are process, container.
    metric str
    The process metric name.
    name str
    The name of query for use in formulas.
    aggregator str
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    is_normalized_cpu bool
    Whether to normalize the CPU percentages.
    limit int
    The number of hits to return.
    sort str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tag_filters Sequence[str]
    An array of tags to filter by.
    text_filter str
    The text to use as a filter.
    dataSource String
    The data source for process queries. Valid values are process, container.
    metric String
    The process metric name.
    name String
    The name of query for use in formulas.
    aggregator String
    The aggregation methods available for metrics queries. Valid values are avg, min, max, sum, last, area, l2norm, percentile.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    isNormalizedCpu Boolean
    Whether to normalize the CPU percentages.
    limit Number
    The number of hits to return.
    sort String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    tagFilters List<String>
    An array of tags to filter by.
    textFilter String
    The text to use as a filter.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQueryArgs

    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    DataSource string
    The data source for SLO queries. Valid values are slo.
    Measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    SloId string
    ID of an SLO to query measures.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    CrossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    GroupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    Name string
    The name of query for use in formulas.
    SloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id string
    ID of an SLO to query measures.
    additional_query_filters string
    Additional filters applied to the SLO query.
    cross_org_uuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    slo_query_type string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource string
    The data source for SLO queries. Valid values are slo.
    measure string
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId string
    ID of an SLO to query measures.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    crossOrgUuids string
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode string
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name string
    The name of query for use in formulas.
    sloQueryType string
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    data_source str
    The data source for SLO queries. Valid values are slo.
    measure str
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    slo_id str
    ID of an SLO to query measures.
    additional_query_filters str
    Additional filters applied to the SLO query.
    cross_org_uuids str
    The source organization UUID for cross organization queries. Feature in Private Beta.
    group_mode str
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name str
    The name of query for use in formulas.
    slo_query_type str
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".
    dataSource String
    The data source for SLO queries. Valid values are slo.
    measure String
    SLO measures queries. Valid values are goodEvents, badEvents, goodMinutes, badMinutes, sloStatus, errorBudgetRemaining, burnRate, errorBudgetBurndown.
    sloId String
    ID of an SLO to query measures.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    crossOrgUuids String
    The source organization UUID for cross organization queries. Feature in Private Beta.
    groupMode String
    Group mode to query measures. Valid values are overall, components. Defaults to "overall".
    name String
    The name of query for use in formulas.
    sloQueryType String
    type of the SLO to query. Valid values are metric, monitor, timeSlice. Defaults to "metric".

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxis, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxisArgs

    IncludeZero bool
    Set to true to include zero.
    Label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    Max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    Min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    Scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    IncludeZero bool
    Set to true to include zero.
    Label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    Max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    Min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    Scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    include_zero bool
    Set to true to include zero.
    label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero Boolean
    Set to true to include zero.
    label String
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max String
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min String
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale String
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero boolean
    Set to true to include zero.
    label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    include_zero bool
    Set to true to include zero.
    label str
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max str
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min str
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale str
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero Boolean
    Set to true to include zero.
    label String
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max String
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min String
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale String
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).

    PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxis, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxisArgs

    IncludeZero bool
    Set to true to include zero.
    Label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    Max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    Min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    Scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    IncludeZero bool
    Set to true to include zero.
    Label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    Max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    Min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    Scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    include_zero bool
    Set to true to include zero.
    label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero Boolean
    Set to true to include zero.
    label String
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max String
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min String
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale String
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero boolean
    Set to true to include zero.
    label string
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max string
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min string
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale string
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    include_zero bool
    Set to true to include zero.
    label str
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max str
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min str
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale str
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).
    includeZero Boolean
    Set to true to include zero.
    label String
    The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
    max String
    Specifies the maximum numeric value to show on the axis. Defaults to auto.
    min String
    Specifies the minimum numeric value to show on the axis. Defaults to auto.
    scale String
    Specifies the scale type. Possible values are linear, log, sqrt, and pow## (for example pow2 or pow0.5).

    PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinition, PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionArgs

    SloId string
    The ID of the service level objective used by the widget.
    TimeWindows List<string>
    A list of time windows to display in the widget. Valid values are 7d, 30d, 90d, weekToDate, previousWeek, monthToDate, previousMonth, globalTime.
    ViewMode string
    The view mode for the widget. Valid values are overall, component, both.
    ViewType string
    The type of view to use when displaying the widget. Only detail is supported.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    Description string
    The description of the widget.
    GlobalTimeTarget string
    The global time target of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    ShowErrorBudget bool
    Whether to show the error budget or not.
    Time PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    SloId string
    The ID of the service level objective used by the widget.
    TimeWindows []string
    A list of time windows to display in the widget. Valid values are 7d, 30d, 90d, weekToDate, previousWeek, monthToDate, previousMonth, globalTime.
    ViewMode string
    The view mode for the widget. Valid values are overall, component, both.
    ViewType string
    The type of view to use when displaying the widget. Only detail is supported.
    AdditionalQueryFilters string
    Additional filters applied to the SLO query.
    Description string
    The description of the widget.
    GlobalTimeTarget string
    The global time target of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    ShowErrorBudget bool
    Whether to show the error budget or not.
    Time PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    slo_id string
    The ID of the service level objective used by the widget.
    time_windows list(string)
    A list of time windows to display in the widget. Valid values are 7d, 30d, 90d, weekToDate, previousWeek, monthToDate, previousMonth, globalTime.
    view_mode string
    The view mode for the widget. Valid values are overall, component, both.
    view_type string
    The type of view to use when displaying the widget. Only detail is supported.
    additional_query_filters string
    Additional filters applied to the SLO query.
    description string
    The description of the widget.
    global_time_target string
    The global time target of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    show_error_budget bool
    Whether to show the error budget or not.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    sloId String
    The ID of the service level objective used by the widget.
    timeWindows List<String>
    A list of time windows to display in the widget. Valid values are 7d, 30d, 90d, weekToDate, previousWeek, monthToDate, previousMonth, globalTime.
    viewMode String
    The view mode for the widget. Valid values are overall, component, both.
    viewType String
    The type of view to use when displaying the widget. Only detail is supported.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    description String
    The description of the widget.
    globalTimeTarget String
    The global time target of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showErrorBudget Boolean
    Whether to show the error budget or not.
    time PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    sloId string
    The ID of the service level objective used by the widget.
    timeWindows string[]
    A list of time windows to display in the widget. Valid values are 7d, 30d, 90d, weekToDate, previousWeek, monthToDate, previousMonth, globalTime.
    viewMode string
    The view mode for the widget. Valid values are overall, component, both.
    viewType string
    The type of view to use when displaying the widget. Only detail is supported.
    additionalQueryFilters string
    Additional filters applied to the SLO query.
    description string
    The description of the widget.
    globalTimeTarget string
    The global time target of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showErrorBudget boolean
    Whether to show the error budget or not.
    time PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    slo_id str
    The ID of the service level objective used by the widget.
    time_windows Sequence[str]
    A list of time windows to display in the widget. Valid values are 7d, 30d, 90d, weekToDate, previousWeek, monthToDate, previousMonth, globalTime.
    view_mode str
    The view mode for the widget. Valid values are overall, component, both.
    view_type str
    The type of view to use when displaying the widget. Only detail is supported.
    additional_query_filters str
    Additional filters applied to the SLO query.
    description str
    The description of the widget.
    global_time_target str
    The global time target of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    show_error_budget bool
    Whether to show the error budget or not.
    time PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    sloId String
    The ID of the service level objective used by the widget.
    timeWindows List<String>
    A list of time windows to display in the widget. Valid values are 7d, 30d, 90d, weekToDate, previousWeek, monthToDate, previousMonth, globalTime.
    viewMode String
    The view mode for the widget. Valid values are overall, component, both.
    viewType String
    The type of view to use when displaying the widget. Only detail is supported.
    additionalQueryFilters String
    Additional filters applied to the SLO query.
    description String
    The description of the widget.
    globalTimeTarget String
    The global time target of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    showErrorBudget Boolean
    Whether to show the error budget or not.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinition, PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionArgs

    Filters List<string>
    Your environment and primary tag (or * if enabled for your account).
    Service string
    The ID of the service to map.
    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Filters []string
    Your environment and primary tag (or * if enabled for your account).
    Service string
    The ID of the service to map.
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    filters list(string)
    Your environment and primary tag (or * if enabled for your account).
    service string
    The ID of the service to map.
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    filters List<String>
    Your environment and primary tag (or * if enabled for your account).
    service String
    The ID of the service to map.
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    filters string[]
    Your environment and primary tag (or * if enabled for your account).
    service string
    The ID of the service to map.
    customLinks PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    filters Sequence[str]
    Your environment and primary tag (or * if enabled for your account).
    service str
    The ID of the service to map.
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    filters List<String>
    Your environment and primary tag (or * if enabled for your account).
    service String
    The ID of the service to map.
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetSloListDefinition, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionArgs

    Requests List<PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    Requests []PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequest
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Time PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    requests list(object)
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    requests List<PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequest>
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    requests PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequest[]
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequest]
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    requests List<Property Map>
    A nested block describing the request to use when displaying the widget. Exactly one request block is allowed.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).

    PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestArgs

    Query PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuery
    Updated SLO List widget.
    RequestType string
    The request type for the SLO List request. Valid values are sloList.
    Query PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuery
    Updated SLO List widget.
    RequestType string
    The request type for the SLO List request. Valid values are sloList.
    query object
    Updated SLO List widget.
    request_type string
    The request type for the SLO List request. Valid values are sloList.
    query PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuery
    Updated SLO List widget.
    requestType String
    The request type for the SLO List request. Valid values are sloList.
    query PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuery
    Updated SLO List widget.
    requestType string
    The request type for the SLO List request. Valid values are sloList.
    query PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuery
    Updated SLO List widget.
    request_type str
    The request type for the SLO List request. Valid values are sloList.
    query Property Map
    Updated SLO List widget.
    requestType String
    The request type for the SLO List request. Valid values are sloList.

    PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQueryArgs

    QueryString string
    Widget query.
    Limit int
    Maximum number of results to display in the table.
    Sorts List<PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySort>
    The facet and order to sort the data, for example: {"column": "status.sli", "order": "desc"}.
    QueryString string
    Widget query.
    Limit int
    Maximum number of results to display in the table.
    Sorts []PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySort
    The facet and order to sort the data, for example: {"column": "status.sli", "order": "desc"}.
    query_string string
    Widget query.
    limit number
    Maximum number of results to display in the table.
    sorts list(object)
    The facet and order to sort the data, for example: {"column": "status.sli", "order": "desc"}.
    queryString String
    Widget query.
    limit Integer
    Maximum number of results to display in the table.
    sorts List<PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySort>
    The facet and order to sort the data, for example: {"column": "status.sli", "order": "desc"}.
    queryString string
    Widget query.
    limit number
    Maximum number of results to display in the table.
    sorts PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySort[]
    The facet and order to sort the data, for example: {"column": "status.sli", "order": "desc"}.
    query_string str
    Widget query.
    limit int
    Maximum number of results to display in the table.
    sorts Sequence[PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySort]
    The facet and order to sort the data, for example: {"column": "status.sli", "order": "desc"}.
    queryString String
    Widget query.
    limit Number
    Maximum number of results to display in the table.
    sorts List<Property Map>
    The facet and order to sort the data, for example: {"column": "status.sli", "order": "desc"}.

    PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySort, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySortArgs

    Column string
    The facet path for the column.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Column string
    The facet path for the column.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    column string
    The facet path for the column.
    order string
    Widget sorting methods. Valid values are asc, desc.
    column String
    The facet path for the column.
    order String
    Widget sorting methods. Valid values are asc, desc.
    column string
    The facet path for the column.
    order string
    Widget sorting methods. Valid values are asc, desc.
    column str
    The facet path for the column.
    order str
    Widget sorting methods. Valid values are asc, desc.
    column String
    The facet path for the column.
    order String
    Widget sorting methods. Valid values are asc, desc.

    PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeArgs

    Fixed PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    Fixed PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    Live PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed object
    A fixed time range with explicit start and end times.
    live object
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeFixed
    A fixed time range with explicit start and end times.
    live PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLive
    An arbitrary live time span, such as 17 minutes or 6 hours.
    fixed Property Map
    A fixed time range with explicit start and end times.
    live Property Map
    An arbitrary live time span, such as 17 minutes or 6 hours.

    PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeFixed, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeFixedArgs

    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    From int
    Start time in seconds since epoch.
    To int
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from Integer
    Start time in seconds since epoch.
    to Integer
    End time in seconds since epoch.
    from number
    Start time in seconds since epoch.
    to number
    End time in seconds since epoch.
    from_ int
    Start time in seconds since epoch.
    to int
    End time in seconds since epoch.
    from Number
    Start time in seconds since epoch.
    to Number
    End time in seconds since epoch.

    PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLiveArgs

    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    Unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    Value int
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Integer
    Value of the time span.
    unit string
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value number
    Value of the time span.
    unit str
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value int
    Value of the time span.
    unit String
    Unit of the time span. Valid values are minute, hour, day, week, month, year.
    value Number
    Value of the time span.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinition, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionArgs

    CustomLinks List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    HideTotal bool
    Whether or not to show the total value in the widget.
    LegendInline PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInline
    Used to configure the inline legend. Cannot be used in conjunction with legend*table.
    LegendTable PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendTable
    Used to configure the table legend. Cannot be used in conjunction with legend*inline.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequest>
    Nested block describing the request to use when displaying the widget. Multiple request blocks are allowed with the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    Time PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    CustomLinks []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionCustomLink
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    Description string
    The description of the widget.
    HideIncompleteCostData bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    HideTotal bool
    Whether or not to show the total value in the widget.
    LegendInline PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInline
    Used to configure the inline legend. Cannot be used in conjunction with legend*table.
    LegendTable PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendTable
    Used to configure the table legend. Cannot be used in conjunction with legend*inline.
    LiveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    Requests []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequest
    Nested block describing the request to use when displaying the widget. Multiple request blocks are allowed with the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    Time PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    Title string
    The title of the widget.
    TitleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    TitleSize string
    The size of the widget's title (defaults to 16).
    custom_links list(object)
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    hide_total bool
    Whether or not to show the total value in the widget.
    legend_inline object
    Used to configure the inline legend. Cannot be used in conjunction with legend*table.
    legend_table object
    Used to configure the table legend. Cannot be used in conjunction with legend*inline.
    live_span string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests list(object)
    Nested block describing the request to use when displaying the widget. Multiple request blocks are allowed with the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    time object
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    title_align string
    The alignment of the widget's title. Valid values are center, left, right.
    title_size string
    The size of the widget's title (defaults to 16).
    customLinks List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionCustomLink>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    hideTotal Boolean
    Whether or not to show the total value in the widget.
    legendInline PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInline
    Used to configure the inline legend. Cannot be used in conjunction with legend*table.
    legendTable PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendTable
    Used to configure the table legend. Cannot be used in conjunction with legend*inline.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequest>
    Nested block describing the request to use when displaying the widget. Multiple request blocks are allowed with the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    time PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    customLinks PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionCustomLink[]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description string
    The description of the widget.
    hideIncompleteCostData boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    hideTotal boolean
    Whether or not to show the total value in the widget.
    legendInline PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInline
    Used to configure the inline legend. Cannot be used in conjunction with legend*table.
    legendTable PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendTable
    Used to configure the table legend. Cannot be used in conjunction with legend*inline.
    liveSpan string
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequest[]
    Nested block describing the request to use when displaying the widget. Multiple request blocks are allowed with the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    time PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title string
    The title of the widget.
    titleAlign string
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize string
    The size of the widget's title (defaults to 16).
    custom_links Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionCustomLink]
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description str
    The description of the widget.
    hide_incomplete_cost_data bool
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    hide_total bool
    Whether or not to show the total value in the widget.
    legend_inline PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInline
    Used to configure the inline legend. Cannot be used in conjunction with legend*table.
    legend_table PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendTable
    Used to configure the table legend. Cannot be used in conjunction with legend*inline.
    live_span str
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequest]
    Nested block describing the request to use when displaying the widget. Multiple request blocks are allowed with the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    time PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionTime
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title str
    The title of the widget.
    title_align str
    The alignment of the widget's title. Valid values are center, left, right.
    title_size str
    The size of the widget's title (defaults to 16).
    customLinks List<Property Map>
    A nested block describing a custom link. Multiple customLink blocks are allowed using the structure below.
    description String
    The description of the widget.
    hideIncompleteCostData Boolean
    Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
    hideTotal Boolean
    Whether or not to show the total value in the widget.
    legendInline Property Map
    Used to configure the inline legend. Cannot be used in conjunction with legend*table.
    legendTable Property Map
    Used to configure the table legend. Cannot be used in conjunction with legend*inline.
    liveSpan String
    The timeframe to use when displaying the widget. Valid values are 1m, 5m, 10m, 15m, 30m, 1h, 4h, 1d, 2d, 1w, 1mo, 3mo, 6mo, weekToDate, monthToDate, 1y, alert.
    requests List<Property Map>
    Nested block describing the request to use when displaying the widget. Multiple request blocks are allowed with the structure below (exactly one of q, logQuery or rumQuery is required within the request block).
    time Property Map
    A nested block used to specify a time span for the widget. Use this or liveSpan, not both.
    title String
    The title of the widget.
    titleAlign String
    The alignment of the widget's title. Valid values are center, left, right.
    titleSize String
    The size of the widget's title (defaults to 16).
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    IsHidden bool
    The flag for toggling context menu link visibility.
    Label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    Link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    OverrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden boolean
    The flag for toggling context menu link visibility.
    label string
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link string
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel string
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    is_hidden bool
    The flag for toggling context menu link visibility.
    label str
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link str
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    override_label str
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.
    isHidden Boolean
    The flag for toggling context menu link visibility.
    label String
    The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
    link String
    The URL of the custom link. URL must include http or https. A relative URL must start with /.
    overrideLabel String
    The label ID that refers to a context menu link. Can be logs, hosts, traces, profiles, processes, containers, or rum.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInline, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInlineArgs

    Type string
    The type of legend (inline or automatic).
    HidePercent bool
    Whether to hide the percentages of the groups.
    HideValue bool
    Whether to hide the values of the groups.
    Type string
    The type of legend (inline or automatic).
    HidePercent bool
    Whether to hide the percentages of the groups.
    HideValue bool
    Whether to hide the values of the groups.
    type string
    The type of legend (inline or automatic).
    hide_percent bool
    Whether to hide the percentages of the groups.
    hide_value bool
    Whether to hide the values of the groups.
    type String
    The type of legend (inline or automatic).
    hidePercent Boolean
    Whether to hide the percentages of the groups.
    hideValue Boolean
    Whether to hide the values of the groups.
    type string
    The type of legend (inline or automatic).
    hidePercent boolean
    Whether to hide the percentages of the groups.
    hideValue boolean
    Whether to hide the values of the groups.
    type str
    The type of legend (inline or automatic).
    hide_percent bool
    Whether to hide the percentages of the groups.
    hide_value bool
    Whether to hide the values of the groups.
    type String
    The type of legend (inline or automatic).
    hidePercent Boolean
    Whether to hide the percentages of the groups.
    hideValue Boolean
    Whether to hide the values of the groups.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendTable, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendTableArgs

    Type string
    The type of legend (table or none).
    Type string
    The type of legend (table or none).
    type string
    The type of legend (table or none).
    type String
    The type of legend (table or none).
    type string
    The type of legend (table or none).
    type str
    The type of legend (table or none).
    type String
    The type of legend (table or none).

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestArgs

    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    AuditQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormula>
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    NetworkQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestNetworkQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestQuery>
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Sort PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    Style PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestStyle
    Define style for the widget's request.
    ApmQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    AuditQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Formulas []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormula
    A list of formulas to use in the widget.
    LogQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    NetworkQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestNetworkQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    ProcessQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Queries []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestQuery
    A list of queries to use in the widget.
    RumQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    SecurityQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    Sort PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    Style PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestStyle
    Define style for the widget's request.
    apm_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    audit_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas list(object)
    A list of formulas to use in the widget.
    log_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    network_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query object
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries list(object)
    A list of queries to use in the widget.
    rum_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query object
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort object
    The controls for sorting the widget. Only applicable for formula-style requests.
    style object
    Define style for the widget's request.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    auditQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormula>
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    networkQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestNetworkQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestQuery>
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    style PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestStyle
    Define style for the widget's request.
    apmQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    auditQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormula[]
    A list of formulas to use in the widget.
    logQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    networkQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestNetworkQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q string
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestQuery[]
    A list of queries to use in the widget.
    rumQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    style PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestStyle
    Define style for the widget's request.
    apm_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    audit_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormula]
    A list of formulas to use in the widget.
    log_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    network_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestNetworkQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    process_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestProcessQuery
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q str
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestQuery]
    A list of queries to use in the widget.
    rum_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestRumQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    security_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestSecurityQuery
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestSort
    The controls for sorting the widget. Only applicable for formula-style requests.
    style PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestStyle
    Define style for the widget's request.
    apmQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    auditQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    formulas List<Property Map>
    A list of formulas to use in the widget.
    logQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    networkQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    processQuery Property Map
    The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    q String
    The metric query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    queries List<Property Map>
    A list of queries to use in the widget.
    rumQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    securityQuery Property Map
    The query to use for this widget. Deprecated. Use queries and formulas instead.

    Deprecated: Use queries and formulas instead.

    sort Property Map
    The controls for sorting the widget. Only applicable for formula-style requests.
    style Property Map
    Define style for the widget's request.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQuery, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQuery, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryMultiCompute, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryMultiComputeArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaArgs

    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    FormulaExpression string
    A string expression built from queries, formulas, and functions.
    Alias string
    An expression alias.
    CellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    CellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    ConditionalFormats []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaConditionalFormat
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    Limit PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimit
    The options for limiting results returned.
    NumberFormat PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    Style PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cell_display_mode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options object
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats list(object)
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit object
    The options for limiting results returned.
    number_format object
    Number formatting options for the formula.
    style object
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaConditionalFormat>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression string
    A string expression built from queries, formulas, and functions.
    alias string
    An expression alias.
    cellDisplayMode string
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaConditionalFormat[]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimit
    The options for limiting results returned.
    numberFormat PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formula_expression str
    A string expression built from queries, formulas, and functions.
    alias str
    An expression alias.
    cell_display_mode str
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cell_display_mode_options PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptions
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditional_formats Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaConditionalFormat]
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimit
    The options for limiting results returned.
    number_format PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormat
    Number formatting options for the formula.
    style PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaStyle
    Styling options for widget formulas.
    formulaExpression String
    A string expression built from queries, formulas, and functions.
    alias String
    An expression alias.
    cellDisplayMode String
    A list of display modes for each table cell. Valid values are number, bar, and trend.
    cellDisplayModeOptions Property Map
    Options for the cell display mode. Only used when cellDisplayMode is set to trend.
    conditionalFormats List<Property Map>
    Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple conditionalFormats blocks are allowed using the structure below.
    limit Property Map
    The options for limiting results returned.
    numberFormat Property Map
    Number formatting options for the formula.
    style Property Map
    Styling options for widget formulas.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptionsArgs

    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    TrendType string
    The type of trend line to display. Valid values are area, line, and bars.
    YScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type string
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale string
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.
    trendType string
    The type of trend line to display. Valid values are area, line, and bars.
    yScale string
    The scale of the y-axis. Valid values are shared and independent.
    trend_type str
    The type of trend line to display. Valid values are area, line, and bars.
    y_scale str
    The scale of the y-axis. Valid values are shared and independent.
    trendType String
    The type of trend line to display. Valid values are area, line, and bars.
    yScale String
    The scale of the y-axis. Valid values are shared and independent.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaConditionalFormat, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaConditionalFormatArgs

    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value double
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    Comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    Palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    Value float64
    A value for the comparator.
    CustomBgColor string
    The color palette to apply to the background, same values available as palette.
    CustomFgColor string
    The color palette to apply to the foreground, same values available as palette.
    HideValue bool
    Setting this to True hides values.
    ImageUrl string
    Displays an image as the background.
    Metric string
    The metric from the request to correlate with this conditional format.
    Timeframe string
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    custom_bg_color string
    The color palette to apply to the background, same values available as palette.
    custom_fg_color string
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Double
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.
    comparator string
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette string
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value number
    A value for the comparator.
    customBgColor string
    The color palette to apply to the background, same values available as palette.
    customFgColor string
    The color palette to apply to the foreground, same values available as palette.
    hideValue boolean
    Setting this to True hides values.
    imageUrl string
    Displays an image as the background.
    metric string
    The metric from the request to correlate with this conditional format.
    timeframe string
    Defines the displayed timeframe.
    comparator str
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette str
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value float
    A value for the comparator.
    custom_bg_color str
    The color palette to apply to the background, same values available as palette.
    custom_fg_color str
    The color palette to apply to the foreground, same values available as palette.
    hide_value bool
    Setting this to True hides values.
    image_url str
    Displays an image as the background.
    metric str
    The metric from the request to correlate with this conditional format.
    timeframe str
    Defines the displayed timeframe.
    comparator String
    The comparator to use. Valid values are =, >, >=, <, <=.
    palette String
    The color palette to apply. Valid values are blue, customBg, customImage, customText, grayOnWhite, grey, green, orange, red, redOnWhite, whiteOnGray, whiteOnGreen, greenOnWhite, whiteOnRed, whiteOnYellow, yellowOnWhite, blackOnLightYellow, blackOnLightGreen, blackOnLightRed.
    value Number
    A value for the comparator.
    customBgColor String
    The color palette to apply to the background, same values available as palette.
    customFgColor String
    The color palette to apply to the foreground, same values available as palette.
    hideValue Boolean
    Setting this to True hides values.
    imageUrl String
    Displays an image as the background.
    metric String
    The metric from the request to correlate with this conditional format.
    timeframe String
    Defines the displayed timeframe.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimitArgs

    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    Count int
    The number of results to return.
    Order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Integer
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count number
    The number of results to return.
    order string
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count int
    The number of results to return.
    order str
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".
    count Number
    The number of results to return.
    order String
    The direction of the sort. Valid values are asc, desc. Defaults to "desc".

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatArgs

    unit object
    Unit of the number format.
    unit_scale object
    The definition of NumberFormatUnitScale object.
    unit Property Map
    Unit of the number format.
    unitScale Property Map
    The definition of NumberFormatUnitScale object.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitArgs

    canonical object
    Canonical Units
    custom object
    Use custom (non canonical metrics)
    canonical Property Map
    Canonical Units
    custom Property Map
    Use custom (non canonical metrics)

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCanonicalArgs

    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    PerUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    UnitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName string
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName string
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    per_unit_name str
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unit_name str
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')
    perUnitName String
    per unit name. If you want to represent megabytes/s, you set 'unitname' = 'megabyte' and 'perunit_name = 'second'
    unitName String
    Unit name. It should be in singular form ('megabyte' and not 'megabytes')

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCustom, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCustomArgs

    Label string
    Unit label
    Label string
    Unit label
    label string
    Unit label
    label String
    Unit label
    label string
    Unit label
    label str
    Unit label
    label String
    Unit label

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitScale, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitScaleArgs

    UnitName string
    The name of the unit.
    UnitName string
    The name of the unit.
    unit_name string
    The name of the unit.
    unitName String
    The name of the unit.
    unitName string
    The name of the unit.
    unit_name str
    The name of the unit.
    unitName String
    The name of the unit.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaStyle, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaStyleArgs

    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    Palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    PaletteIndex int
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index number
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Integer
    Index specifying which color to use within the palette.
    palette string
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex number
    Index specifying which color to use within the palette.
    palette str
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    palette_index int
    Index specifying which color to use within the palette.
    palette String
    The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
    paletteIndex Number
    Index specifying which color to use within the palette.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQuery, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryArgs

    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    Index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    ComputeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    GroupBies []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBy
    Multiple groupBy blocks are allowed using the structure below.
    MultiComputes []PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryMultiCompute
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    SearchQuery string
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query object
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies list(object)
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes list(object)
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query string
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBy>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryMultiCompute>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.
    index string
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBy[]
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryMultiCompute[]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery string
    The search query to use.
    index str
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    compute_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryComputeQuery
    computeQuery or multiCompute is required. The map keys are listed below.
    group_bies Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBy]
    Multiple groupBy blocks are allowed using the structure below.
    multi_computes Sequence[PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryMultiCompute]
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    search_query str
    The search query to use.
    index String
    A comma separated-list of index names. Use * to query all indexes at once. Multiple Indexes.
    computeQuery Property Map
    computeQuery or multiCompute is required. The map keys are listed below.
    groupBies List<Property Map>
    Multiple groupBy blocks are allowed using the structure below.
    multiComputes List<Property Map>
    computeQuery or multiCompute is required. Multiple multiCompute blocks are allowed using the structure below.
    searchQuery String
    The search query to use.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryComputeQuery, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryComputeQueryArgs

    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    Aggregation string
    The aggregation method.
    Facet string
    The facet name.
    Interval int
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Integer
    Define the time interval in seconds.
    aggregation string
    The aggregation method.
    facet string
    The facet name.
    interval number
    Define the time interval in seconds.
    aggregation str
    The aggregation method.
    facet str
    The facet name.
    interval int
    Define the time interval in seconds.
    aggregation String
    The aggregation method.
    facet String
    The facet name.
    interval Number
    Define the time interval in seconds.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBy, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupByArgs

    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    Facet string
    The facet name.
    Limit int
    The maximum number of items in the group.
    SortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sort_query object
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Integer
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet string
    The facet name.
    limit number
    The maximum number of items in the group.
    sortQuery PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet str
    The facet name.
    limit int
    The maximum number of items in the group.
    sort_query PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBySortQuery
    A list of exactly one element describing the sort query to use.
    facet String
    The facet name.
    limit Number
    The maximum number of items in the group.
    sortQuery Property Map
    A list of exactly one element describing the sort query to use.

    PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBySortQuery, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryGroupBySortQueryArgs

    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    Aggregation string
    The aggregation method.
    Order string
    Widget sorting methods. Valid values are asc, desc.
    Facet string
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.
    aggregation string
    The aggregation method.
    order string
    Widget sorting methods. Valid values are asc, desc.
    facet string
    The facet name.
    aggregation str
    The aggregation method.
    order str
    Widget sorting methods. Valid values are asc, desc.
    facet str
    The facet name.
    aggregation String
    The aggregation method.
    order String
    Widget sorting methods. Valid values are asc, desc.
    facet String
    The facet name.

    Import

    The pulumi import command can be used, for example:

    $ pulumi import datadog:index/powerpackV2:PowerpackV2 foo 11111111-2222-3333-4444-555555555555
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Datadog pulumi/pulumi-datadog
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the datadog Terraform Provider.
    datadog logo
    Viewing docs for Datadog v5.10.0
    published on Thursday, Jul 30, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial