published on Thursday, Jul 30, 2026 by Pulumi
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
Powerpack
V2Layout - 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.
- List<string>
- List of tags to identify this powerpack.
- Template
Variables List<PowerpackV2Template Variable> - The list of template variables for this powerpack.
- Widgets
List<Powerpack
V2Widget> - The list of widgets to display in the powerpack.
- Description string
- The description of the powerpack.
- Layout
Powerpack
V2Layout Args - 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.
- []string
- List of tags to identify this powerpack.
- Template
Variables []PowerpackV2Template Variable Args - The list of template variables for this powerpack.
- Widgets
[]Powerpack
V2Widget Args - 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.
- 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
Powerpack
V2Layout - 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 Boolean - Whether or not title should be displayed in the powerpack.
- List<String>
- List of tags to identify this powerpack.
- template
Variables List<PowerpackV2Template Variable> - The list of template variables for this powerpack.
- widgets
List<Powerpack
V2Widget> - The list of widgets to display in the powerpack.
- description string
- The description of the powerpack.
- layout
Powerpack
V2Layout - 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 boolean - Whether or not title should be displayed in the powerpack.
- string[]
- List of tags to identify this powerpack.
- template
Variables PowerpackV2Template Variable[] - The list of template variables for this powerpack.
- widgets
Powerpack
V2Widget[] - The list of widgets to display in the powerpack.
- description str
- The description of the powerpack.
- layout
Powerpack
V2Layout Args - 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.
- Sequence[str]
- List of tags to identify this powerpack.
- template_
variables Sequence[PowerpackV2Template Variable Args] - The list of template variables for this powerpack.
- widgets
Sequence[Powerpack
V2Widget Args] - 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.
- live
Span String - The timeframe to use when displaying the powerpack.
- name String
- The name for the powerpack.
- show
Title Boolean - Whether or not title should be displayed in the powerpack.
- List<String>
- List of tags to identify this powerpack.
- template
Variables 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) -> PowerpackV2func 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.
- Description string
- The description of the powerpack.
- Layout
Powerpack
V2Layout - 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.
- List<string>
- List of tags to identify this powerpack.
- Template
Variables List<PowerpackV2Template Variable> - The list of template variables for this powerpack.
- Widgets
List<Powerpack
V2Widget> - The list of widgets to display in the powerpack.
- Description string
- The description of the powerpack.
- Layout
Powerpack
V2Layout Args - 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.
- []string
- List of tags to identify this powerpack.
- Template
Variables []PowerpackV2Template Variable Args - The list of template variables for this powerpack.
- Widgets
[]Powerpack
V2Widget Args - 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.
- 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
Powerpack
V2Layout - 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 Boolean - Whether or not title should be displayed in the powerpack.
- List<String>
- List of tags to identify this powerpack.
- template
Variables List<PowerpackV2Template Variable> - The list of template variables for this powerpack.
- widgets
List<Powerpack
V2Widget> - The list of widgets to display in the powerpack.
- description string
- The description of the powerpack.
- layout
Powerpack
V2Layout - 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 boolean - Whether or not title should be displayed in the powerpack.
- string[]
- List of tags to identify this powerpack.
- template
Variables PowerpackV2Template Variable[] - The list of template variables for this powerpack.
- widgets
Powerpack
V2Widget[] - The list of widgets to display in the powerpack.
- description str
- The description of the powerpack.
- layout
Powerpack
V2Layout Args - 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.
- Sequence[str]
- List of tags to identify this powerpack.
- template_
variables Sequence[PowerpackV2Template Variable Args] - The list of template variables for this powerpack.
- widgets
Sequence[Powerpack
V2Widget Args] - 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.
- live
Span String - The timeframe to use when displaying the powerpack.
- name String
- The name for the powerpack.
- show
Title Boolean - Whether or not title should be displayed in the powerpack.
- List<String>
- List of tags to identify this powerpack.
- template
Variables 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
PowerpackV2TemplateVariable, PowerpackV2TemplateVariableArgs
PowerpackV2Widget, PowerpackV2WidgetArgs
- Alert
Graph PowerpackDefinition V2Widget Alert Graph Definition - The definition for a Alert Graph widget.
- Alert
Value PowerpackDefinition V2Widget Alert Value Definition - The definition for a Alert Value widget.
- Bar
Chart PowerpackDefinition V2Widget Bar Chart Definition - The definition for a Bar Chart widget.
- Change
Definition PowerpackV2Widget Change Definition - The definition for a Change widget.
- Check
Status PowerpackDefinition V2Widget Check Status Definition - The definition for a Check Status widget.
- Distribution
Definition PowerpackV2Widget Distribution Definition - The definition for a Distribution widget.
- Event
Stream PowerpackDefinition V2Widget Event Stream Definition - The definition for a Event Stream widget.
- Event
Timeline PowerpackDefinition V2Widget Event Timeline Definition - The definition for a Event Timeline widget.
- Free
Text PowerpackDefinition V2Widget Free Text Definition - The definition for a Free Text widget.
- Funnel
Definition PowerpackV2Widget Funnel Definition - The definition for a Funnel widget.
- Geomap
Definition PowerpackV2Widget Geomap Definition - The definition for a Geomap widget.
- Group
Definition PowerpackV2Widget Group Definition - The definition for a Group widget.
- Heatmap
Definition PowerpackV2Widget Heatmap Definition - The definition for a Heatmap widget.
- Hostmap
Definition PowerpackV2Widget Hostmap Definition - The definition for a Hostmap widget.
- Id int
- The ID of the widget.
- Iframe
Definition PowerpackV2Widget Iframe Definition - The definition for an Iframe widget.
- Image
Definition PowerpackV2Widget Image Definition - The definition for an Image widget
- List
Stream PowerpackDefinition V2Widget List Stream Definition - The definition for a List Stream widget.
- Log
Stream PowerpackDefinition V2Widget Log Stream Definition - The definition for an Log Stream widget.
- Manage
Status PowerpackDefinition V2Widget Manage Status Definition - The definition for an Manage Status widget.
- Note
Definition PowerpackV2Widget Note Definition - The definition for a Note widget.
- Point
Plot PowerpackDefinition V2Widget Point Plot Definition - The definition for a Point Plot widget.
- Query
Table PowerpackDefinition V2Widget Query Table Definition - The definition for a Query Table widget.
- Query
Value PowerpackDefinition V2Widget Query Value Definition - The definition for a Query Value widget.
- Run
Workflow PowerpackDefinition V2Widget Run Workflow Definition - The definition for a Run Workflow widget.
- Sankey
Definition PowerpackV2Widget Sankey Definition - The definition for a Sankey diagram widget.
- Scatterplot
Definition PowerpackV2Widget Scatterplot Definition - The definition for a Scatterplot widget.
- Service
Level PowerpackObjective Definition V2Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- Servicemap
Definition PowerpackV2Widget Servicemap Definition - The definition for a Service Map widget.
- Slo
List PowerpackDefinition V2Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- Sunburst
Definition PowerpackV2Widget Sunburst Definition - The definition for a Sunburst widget.
- Timeseries
Definition PowerpackV2Widget Timeseries Definition - The definition for a Timeseries widget.
- Toplist
Definition PowerpackV2Widget Toplist Definition - The definition for a Toplist widget.
- Topology
Map PowerpackDefinition V2Widget Topology Map Definition - The definition for a Topology Map widget.
- Trace
Service PowerpackDefinition V2Widget Trace Service Definition - The definition for a Trace Service widget.
- Treemap
Definition PowerpackV2Widget Treemap Definition - The definition for a Treemap widget.
- Widget
Layout PowerpackV2Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- Wildcard
Definition PowerpackV2Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- Alert
Graph PowerpackDefinition V2Widget Alert Graph Definition - The definition for a Alert Graph widget.
- Alert
Value PowerpackDefinition V2Widget Alert Value Definition - The definition for a Alert Value widget.
- Bar
Chart PowerpackDefinition V2Widget Bar Chart Definition - The definition for a Bar Chart widget.
- Change
Definition PowerpackV2Widget Change Definition - The definition for a Change widget.
- Check
Status PowerpackDefinition V2Widget Check Status Definition - The definition for a Check Status widget.
- Distribution
Definition PowerpackV2Widget Distribution Definition - The definition for a Distribution widget.
- Event
Stream PowerpackDefinition V2Widget Event Stream Definition - The definition for a Event Stream widget.
- Event
Timeline PowerpackDefinition V2Widget Event Timeline Definition - The definition for a Event Timeline widget.
- Free
Text PowerpackDefinition V2Widget Free Text Definition - The definition for a Free Text widget.
- Funnel
Definition PowerpackV2Widget Funnel Definition - The definition for a Funnel widget.
- Geomap
Definition PowerpackV2Widget Geomap Definition - The definition for a Geomap widget.
- Group
Definition PowerpackV2Widget Group Definition - The definition for a Group widget.
- Heatmap
Definition PowerpackV2Widget Heatmap Definition - The definition for a Heatmap widget.
- Hostmap
Definition PowerpackV2Widget Hostmap Definition - The definition for a Hostmap widget.
- Id int
- The ID of the widget.
- Iframe
Definition PowerpackV2Widget Iframe Definition - The definition for an Iframe widget.
- Image
Definition PowerpackV2Widget Image Definition - The definition for an Image widget
- List
Stream PowerpackDefinition V2Widget List Stream Definition - The definition for a List Stream widget.
- Log
Stream PowerpackDefinition V2Widget Log Stream Definition - The definition for an Log Stream widget.
- Manage
Status PowerpackDefinition V2Widget Manage Status Definition - The definition for an Manage Status widget.
- Note
Definition PowerpackV2Widget Note Definition - The definition for a Note widget.
- Point
Plot PowerpackDefinition V2Widget Point Plot Definition - The definition for a Point Plot widget.
- Query
Table PowerpackDefinition V2Widget Query Table Definition - The definition for a Query Table widget.
- Query
Value PowerpackDefinition V2Widget Query Value Definition - The definition for a Query Value widget.
- Run
Workflow PowerpackDefinition V2Widget Run Workflow Definition - The definition for a Run Workflow widget.
- Sankey
Definition PowerpackV2Widget Sankey Definition - The definition for a Sankey diagram widget.
- Scatterplot
Definition PowerpackV2Widget Scatterplot Definition - The definition for a Scatterplot widget.
- Service
Level PowerpackObjective Definition V2Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- Servicemap
Definition PowerpackV2Widget Servicemap Definition - The definition for a Service Map widget.
- Slo
List PowerpackDefinition V2Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- Sunburst
Definition PowerpackV2Widget Sunburst Definition - The definition for a Sunburst widget.
- Timeseries
Definition PowerpackV2Widget Timeseries Definition - The definition for a Timeseries widget.
- Toplist
Definition PowerpackV2Widget Toplist Definition - The definition for a Toplist widget.
- Topology
Map PowerpackDefinition V2Widget Topology Map Definition - The definition for a Topology Map widget.
- Trace
Service PowerpackDefinition V2Widget Trace Service Definition - The definition for a Trace Service widget.
- Treemap
Definition PowerpackV2Widget Treemap Definition - The definition for a Treemap widget.
- Widget
Layout PowerpackV2Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- Wildcard
Definition PowerpackV2Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert_
graph_ objectdefinition - The definition for a Alert Graph widget.
- alert_
value_ objectdefinition - The definition for a Alert Value widget.
- bar_
chart_ objectdefinition - The definition for a Bar Chart widget.
- change_
definition object - The definition for a Change widget.
- check_
status_ objectdefinition - The definition for a Check Status widget.
- distribution_
definition object - The definition for a Distribution widget.
- event_
stream_ objectdefinition - The definition for a Event Stream widget.
- event_
timeline_ objectdefinition - The definition for a Event Timeline widget.
- free_
text_ objectdefinition - 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_ objectdefinition - The definition for a List Stream widget.
- log_
stream_ objectdefinition - The definition for an Log Stream widget.
- manage_
status_ objectdefinition - The definition for an Manage Status widget.
- note_
definition object - The definition for a Note widget.
- point_
plot_ objectdefinition - The definition for a Point Plot widget.
- query_
table_ objectdefinition - The definition for a Query Table widget.
- query_
value_ objectdefinition - The definition for a Query Value widget.
- run_
workflow_ objectdefinition - 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_ objectobjective_ definition - The definition for a Service Level Objective widget.
- servicemap_
definition object - The definition for a Service Map widget.
- slo_
list_ objectdefinition - 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_ objectdefinition - The definition for a Topology Map widget.
- trace_
service_ objectdefinition - 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.
- alert
Graph PowerpackDefinition V2Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert
Value PowerpackDefinition V2Widget Alert Value Definition - The definition for a Alert Value widget.
- bar
Chart PowerpackDefinition V2Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change
Definition PowerpackV2Widget Change Definition - The definition for a Change widget.
- check
Status PowerpackDefinition V2Widget Check Status Definition - The definition for a Check Status widget.
- distribution
Definition PowerpackV2Widget Distribution Definition - The definition for a Distribution widget.
- event
Stream PowerpackDefinition V2Widget Event Stream Definition - The definition for a Event Stream widget.
- event
Timeline PowerpackDefinition V2Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free
Text PowerpackDefinition V2Widget Free Text Definition - The definition for a Free Text widget.
- funnel
Definition PowerpackV2Widget Funnel Definition - The definition for a Funnel widget.
- geomap
Definition PowerpackV2Widget Geomap Definition - The definition for a Geomap widget.
- group
Definition PowerpackV2Widget Group Definition - The definition for a Group widget.
- heatmap
Definition PowerpackV2Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap
Definition PowerpackV2Widget Hostmap Definition - The definition for a Hostmap widget.
- id Integer
- The ID of the widget.
- iframe
Definition PowerpackV2Widget Iframe Definition - The definition for an Iframe widget.
- image
Definition PowerpackV2Widget Image Definition - The definition for an Image widget
- list
Stream PowerpackDefinition V2Widget List Stream Definition - The definition for a List Stream widget.
- log
Stream PowerpackDefinition V2Widget Log Stream Definition - The definition for an Log Stream widget.
- manage
Status PowerpackDefinition V2Widget Manage Status Definition - The definition for an Manage Status widget.
- note
Definition PowerpackV2Widget Note Definition - The definition for a Note widget.
- point
Plot PowerpackDefinition V2Widget Point Plot Definition - The definition for a Point Plot widget.
- query
Table PowerpackDefinition V2Widget Query Table Definition - The definition for a Query Table widget.
- query
Value PowerpackDefinition V2Widget Query Value Definition - The definition for a Query Value widget.
- run
Workflow PowerpackDefinition V2Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey
Definition PowerpackV2Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot
Definition PowerpackV2Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service
Level PowerpackObjective Definition V2Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap
Definition PowerpackV2Widget Servicemap Definition - The definition for a Service Map widget.
- slo
List PowerpackDefinition V2Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- sunburst
Definition PowerpackV2Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries
Definition PowerpackV2Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist
Definition PowerpackV2Widget Toplist Definition - The definition for a Toplist widget.
- topology
Map PowerpackDefinition V2Widget Topology Map Definition - The definition for a Topology Map widget.
- trace
Service PowerpackDefinition V2Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap
Definition PowerpackV2Widget Treemap Definition - The definition for a Treemap widget.
- widget
Layout PowerpackV2Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard
Definition PowerpackV2Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert
Graph PowerpackDefinition V2Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert
Value PowerpackDefinition V2Widget Alert Value Definition - The definition for a Alert Value widget.
- bar
Chart PowerpackDefinition V2Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change
Definition PowerpackV2Widget Change Definition - The definition for a Change widget.
- check
Status PowerpackDefinition V2Widget Check Status Definition - The definition for a Check Status widget.
- distribution
Definition PowerpackV2Widget Distribution Definition - The definition for a Distribution widget.
- event
Stream PowerpackDefinition V2Widget Event Stream Definition - The definition for a Event Stream widget.
- event
Timeline PowerpackDefinition V2Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free
Text PowerpackDefinition V2Widget Free Text Definition - The definition for a Free Text widget.
- funnel
Definition PowerpackV2Widget Funnel Definition - The definition for a Funnel widget.
- geomap
Definition PowerpackV2Widget Geomap Definition - The definition for a Geomap widget.
- group
Definition PowerpackV2Widget Group Definition - The definition for a Group widget.
- heatmap
Definition PowerpackV2Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap
Definition PowerpackV2Widget Hostmap Definition - The definition for a Hostmap widget.
- id number
- The ID of the widget.
- iframe
Definition PowerpackV2Widget Iframe Definition - The definition for an Iframe widget.
- image
Definition PowerpackV2Widget Image Definition - The definition for an Image widget
- list
Stream PowerpackDefinition V2Widget List Stream Definition - The definition for a List Stream widget.
- log
Stream PowerpackDefinition V2Widget Log Stream Definition - The definition for an Log Stream widget.
- manage
Status PowerpackDefinition V2Widget Manage Status Definition - The definition for an Manage Status widget.
- note
Definition PowerpackV2Widget Note Definition - The definition for a Note widget.
- point
Plot PowerpackDefinition V2Widget Point Plot Definition - The definition for a Point Plot widget.
- query
Table PowerpackDefinition V2Widget Query Table Definition - The definition for a Query Table widget.
- query
Value PowerpackDefinition V2Widget Query Value Definition - The definition for a Query Value widget.
- run
Workflow PowerpackDefinition V2Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey
Definition PowerpackV2Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot
Definition PowerpackV2Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service
Level PowerpackObjective Definition V2Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap
Definition PowerpackV2Widget Servicemap Definition - The definition for a Service Map widget.
- slo
List PowerpackDefinition V2Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- sunburst
Definition PowerpackV2Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries
Definition PowerpackV2Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist
Definition PowerpackV2Widget Toplist Definition - The definition for a Toplist widget.
- topology
Map PowerpackDefinition V2Widget Topology Map Definition - The definition for a Topology Map widget.
- trace
Service PowerpackDefinition V2Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap
Definition PowerpackV2Widget Treemap Definition - The definition for a Treemap widget.
- widget
Layout PowerpackV2Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard
Definition PowerpackV2Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert_
graph_ Powerpackdefinition V2Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert_
value_ Powerpackdefinition V2Widget Alert Value Definition - The definition for a Alert Value widget.
- bar_
chart_ Powerpackdefinition V2Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change_
definition PowerpackV2Widget Change Definition - The definition for a Change widget.
- check_
status_ Powerpackdefinition V2Widget Check Status Definition - The definition for a Check Status widget.
- distribution_
definition PowerpackV2Widget Distribution Definition - The definition for a Distribution widget.
- event_
stream_ Powerpackdefinition V2Widget Event Stream Definition - The definition for a Event Stream widget.
- event_
timeline_ Powerpackdefinition V2Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free_
text_ Powerpackdefinition V2Widget Free Text Definition - The definition for a Free Text widget.
- funnel_
definition PowerpackV2Widget Funnel Definition - The definition for a Funnel widget.
- geomap_
definition PowerpackV2Widget Geomap Definition - The definition for a Geomap widget.
- group_
definition PowerpackV2Widget Group Definition - The definition for a Group widget.
- heatmap_
definition PowerpackV2Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap_
definition PowerpackV2Widget Hostmap Definition - The definition for a Hostmap widget.
- id int
- The ID of the widget.
- iframe_
definition PowerpackV2Widget Iframe Definition - The definition for an Iframe widget.
- image_
definition PowerpackV2Widget Image Definition - The definition for an Image widget
- list_
stream_ Powerpackdefinition V2Widget List Stream Definition - The definition for a List Stream widget.
- log_
stream_ Powerpackdefinition V2Widget Log Stream Definition - The definition for an Log Stream widget.
- manage_
status_ Powerpackdefinition V2Widget Manage Status Definition - The definition for an Manage Status widget.
- note_
definition PowerpackV2Widget Note Definition - The definition for a Note widget.
- point_
plot_ Powerpackdefinition V2Widget Point Plot Definition - The definition for a Point Plot widget.
- query_
table_ Powerpackdefinition V2Widget Query Table Definition - The definition for a Query Table widget.
- query_
value_ Powerpackdefinition V2Widget Query Value Definition - The definition for a Query Value widget.
- run_
workflow_ Powerpackdefinition V2Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey_
definition PowerpackV2Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot_
definition PowerpackV2Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service_
level_ Powerpackobjective_ definition V2Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap_
definition PowerpackV2Widget Servicemap Definition - The definition for a Service Map widget.
- slo_
list_ Powerpackdefinition V2Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- sunburst_
definition PowerpackV2Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries_
definition PowerpackV2Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist_
definition PowerpackV2Widget Toplist Definition - The definition for a Toplist widget.
- topology_
map_ Powerpackdefinition V2Widget Topology Map Definition - The definition for a Topology Map widget.
- trace_
service_ Powerpackdefinition V2Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap_
definition PowerpackV2Widget Treemap Definition - The definition for a Treemap widget.
- widget_
layout PowerpackV2Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard_
definition PowerpackV2Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert
Graph Property MapDefinition - The definition for a Alert Graph widget.
- alert
Value Property MapDefinition - The definition for a Alert Value widget.
- bar
Chart Property MapDefinition - The definition for a Bar Chart widget.
- change
Definition Property Map - The definition for a Change widget.
- check
Status Property MapDefinition - The definition for a Check Status widget.
- distribution
Definition Property Map - The definition for a Distribution widget.
- event
Stream Property MapDefinition - The definition for a Event Stream widget.
- event
Timeline Property MapDefinition - The definition for a Event Timeline widget.
- free
Text Property MapDefinition - The definition for a Free Text widget.
- funnel
Definition Property Map - The definition for a Funnel widget.
- geomap
Definition Property Map - The definition for a Geomap widget.
- group
Definition Property Map - The definition for a Group widget.
- heatmap
Definition Property Map - The definition for a Heatmap widget.
- hostmap
Definition Property Map - The definition for a Hostmap widget.
- id Number
- The ID of the widget.
- iframe
Definition Property Map - The definition for an Iframe widget.
- image
Definition Property Map - The definition for an Image widget
- list
Stream Property MapDefinition - The definition for a List Stream widget.
- log
Stream Property MapDefinition - The definition for an Log Stream widget.
- manage
Status Property MapDefinition - The definition for an Manage Status widget.
- note
Definition Property Map - The definition for a Note widget.
- point
Plot Property MapDefinition - The definition for a Point Plot widget.
- query
Table Property MapDefinition - The definition for a Query Table widget.
- query
Value Property MapDefinition - The definition for a Query Value widget.
- run
Workflow Property MapDefinition - The definition for a Run Workflow widget.
- sankey
Definition Property Map - The definition for a Sankey diagram widget.
- scatterplot
Definition Property Map - The definition for a Scatterplot widget.
- service
Level Property MapObjective Definition - The definition for a Service Level Objective widget.
- servicemap
Definition Property Map - The definition for a Service Map widget.
- slo
List Property MapDefinition - The definition for an SLO (Service Level Objective) List widget.
- sunburst
Definition Property Map - The definition for a Sunburst widget.
- timeseries
Definition Property Map - The definition for a Timeseries widget.
- toplist
Definition Property Map - The definition for a Toplist widget.
- topology
Map Property MapDefinition - The definition for a Topology Map widget.
- trace
Service Property MapDefinition - The definition for a Trace Service widget.
- treemap
Definition Property Map - The definition for a Treemap widget.
- widget
Layout Property Map - The layout of the widget on a 'free' dashboard.
- wildcard
Definition Property Map - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
PowerpackV2WidgetAlertGraphDefinition, PowerpackV2WidgetAlertGraphDefinitionArgs
- 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 boolCost Data - 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
Powerpack
V2Widget Alert Graph Definition Time - 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).
- 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 boolCost Data - 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
Powerpack
V2Widget Alert Graph Definition Time - 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).
- 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_ boolcost_ data - 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).
- 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 BooleanCost Data - 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
Powerpack
V2Widget Alert Graph Definition Time - 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).
- 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 booleanCost Data - 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
Powerpack
V2Widget Alert Graph Definition Time - 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).
- 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_ boolcost_ data - 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
Powerpack
V2Widget Alert Graph Definition Time - 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).
- 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 BooleanCost Data - 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 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.
- 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).
PowerpackV2WidgetAlertGraphDefinitionTime, PowerpackV2WidgetAlertGraphDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Alert Graph Definition Time Live - 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
PowerpackV2WidgetAlertGraphDefinitionTimeLive, PowerpackV2WidgetAlertGraphDefinitionTimeLiveArgs
PowerpackV2WidgetAlertValueDefinition, PowerpackV2WidgetAlertValueDefinitionArgs
- Alert
Id string - The ID of the monitor used by the widget.
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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 int
- 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
Powerpack
V2Widget Alert Value Definition Time - 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.
- Alert
Id string - The ID of the monitor used by the widget.
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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 int
- 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
Powerpack
V2Widget Alert Value Definition Time - 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.
- alert_
id string - The ID of the monitor used by the widget.
- description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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.
- alert
Id String - The ID of the monitor used by the widget.
- description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 Integer
- 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
Powerpack
V2Widget Alert Value Definition Time - 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.
- alert
Id string - The ID of the monitor used by the widget.
- description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Alert Value Definition Time - 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.
- alert_
id str - The ID of the monitor used by the widget.
- description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Alert Value Definition Time - 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.
- alert
Id String - The ID of the monitor used by the widget.
- description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 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.
- 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.
PowerpackV2WidgetAlertValueDefinitionTime, PowerpackV2WidgetAlertValueDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Alert Value Definition Time Live - 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
PowerpackV2WidgetAlertValueDefinitionTimeLive, PowerpackV2WidgetAlertValueDefinitionTimeLiveArgs
PowerpackV2WidgetBarChartDefinition, PowerpackV2WidgetBarChartDefinitionArgs
- Custom
Links List<PowerpackV2Widget Bar Chart Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- Style
Powerpack
V2Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- Time
Powerpack
V2Widget Bar Chart Definition Time - 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).
- Custom
Links []PowerpackV2Widget Bar Chart Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- Style
Powerpack
V2Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- Time
Powerpack
V2Widget Bar Chart Definition Time - 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).
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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).
- custom
Links List<PowerpackV2Widget Bar Chart Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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
Powerpack
V2Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Powerpack
V2Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Powerpack
V2Widget Bar Chart Definition Time - 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).
- custom
Links PowerpackV2Widget Bar Chart Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Powerpack
V2Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Powerpack
V2Widget Bar Chart Definition Time - 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).
- custom_
links Sequence[PowerpackV2Widget Bar Chart Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Powerpack
V2Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Powerpack
V2Widget Bar Chart Definition Time - 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).
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 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.
- 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).
PowerpackV2WidgetBarChartDefinitionCustomLink, PowerpackV2WidgetBarChartDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetBarChartDefinitionRequest, PowerpackV2WidgetBarChartDefinitionRequestArgs
- Apm
Query PowerpackV2Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Conditional
Formats List<PowerpackV2Widget Bar Chart Definition Request Conditional Format> - Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
- Formulas
List<Powerpack
V2Widget Bar Chart Definition Request Formula> - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Bar Chart Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Bar Chart Definition Request Query> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Powerpack
V2Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Powerpack
V2Widget Bar Chart Definition Request Style - Define request for the widget's style.
- Apm
Query PowerpackV2Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Conditional
Formats []PowerpackV2Widget Bar Chart Definition Request Conditional Format - Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
- Formulas
[]Powerpack
V2Widget Bar Chart Definition Request Formula - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Bar Chart Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Bar Chart Definition Request Query - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Powerpack
V2Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Powerpack
V2Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm_
query object - The query to use for this widget. 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. 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.
- apm
Query PowerpackV2Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats List<PowerpackV2Widget Bar Chart Definition Request Conditional Format> - Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
- formulas
List<Powerpack
V2Widget Bar Chart Definition Request Formula> - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Bar Chart Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Bar Chart Definition Request Query> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Powerpack
V2Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Powerpack
V2Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm
Query PowerpackV2Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats PowerpackV2Widget Bar Chart Definition Request Conditional Format[] - Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
- formulas
Powerpack
V2Widget Bar Chart Definition Request Formula[] - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Bar Chart Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Bar Chart Definition Request Query[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Powerpack
V2Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Powerpack
V2Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm_
query PowerpackV2Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional_
formats Sequence[PowerpackV2Widget Bar Chart Definition Request Conditional Format] - Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
- formulas
Sequence[Powerpack
V2Widget Bar Chart Definition Request Formula] - A list of formulas to use in the widget.
- log_
query PowerpackV2Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Bar Chart Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Bar Chart Definition Request Query] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Powerpack
V2Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Powerpack
V2Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats 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.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Bar Chart Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Bar Chart Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Bar Chart Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Bar Chart Definition Request Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Bar Chart Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Bar Chart Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Bar Chart Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Bar Chart Definition Request Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Bar Chart Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Bar Chart Definition Request Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Bar Chart Definition Request Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Bar Chart Definition Request Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Bar Chart Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Bar Chart Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Bar Chart Definition Request Apm Query Group By Sort Query - 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 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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetBarChartDefinitionRequestFormula, PowerpackV2WidgetBarChartDefinitionRequestFormulaArgs
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Bar Chart Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Bar Chart Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Bar Chart Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Bar Chart Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Bar Chart Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Bar Chart Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Bar Chart Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Bar Chart Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Bar Chart Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Bar Chart Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Bar Chart Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Bar Chart Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Bar Chart Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Bar Chart Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Bar Chart Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetBarChartDefinitionRequestFormulaLimit, PowerpackV2WidgetBarChartDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Bar Chart Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Bar Chart Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Bar Chart Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Bar Chart Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Bar Chart Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Bar Chart Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Bar Chart Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Bar Chart Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Bar Chart Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Bar Chart Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Bar Chart Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Bar Chart Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Bar Chart Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Bar Chart Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Bar Chart Definition Request Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetBarChartDefinitionRequestQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetBarChartDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetBarChartDefinitionRequestQueryEventQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Bar Chart Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Bar Chart Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Bar Chart Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Bar Chart Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Bar Chart Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Bar Chart Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Bar Chart Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Bar Chart Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Bar Chart Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Bar Chart Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Bar Chart Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Bar Chart Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Bar Chart Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Bar Chart Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Bar Chart Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetBarChartDefinitionRequestQueryProcessQuery, PowerpackV2WidgetBarChartDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetBarChartDefinitionRequestQuerySloQuery, PowerpackV2WidgetBarChartDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Bar Chart Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Bar Chart Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Bar Chart Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Bar Chart Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Bar Chart Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Bar Chart Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Bar Chart Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Bar Chart Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Bar Chart Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Bar Chart Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Bar Chart Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Bar Chart Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Bar Chart Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Bar Chart Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Bar Chart Definition Request Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Bar Chart Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Bar Chart Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Bar Chart Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Bar Chart Definition Request Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Bar Chart Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Bar Chart Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Bar Chart Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Bar Chart Definition Request Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Bar Chart Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Bar Chart Definition Request Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Bar Chart Definition Request Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Bar Chart Definition Request Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Bar Chart Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Bar Chart Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Bar Chart Definition Request Security Query Group By Sort Query - 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 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.
- Order
Bies List<PowerpackV2Widget Bar Chart Definition Request Sort Order By> - The list of items to sort the widget by.
- Count int
- The number of items to limit the widget to.
- Order
Bies []PowerpackV2Widget Bar Chart Definition Request Sort Order By - 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.
- order
Bies List<PowerpackV2Widget Bar Chart Definition Request Sort Order By> - The list of items to sort the widget by.
- count number
- The number of items to limit the widget to.
- order
Bies PowerpackV2Widget Bar Chart Definition Request Sort Order By[] - The list of items to sort the widget by.
- count int
- The number of items to limit the widget to.
- order_
bies Sequence[PowerpackV2Widget Bar Chart Definition Request Sort Order By] - The list of items to sort the widget by.
- count Number
- The number of items to limit the widget to.
- order
Bies List<Property Map> - The list of items to sort the widget by.
PowerpackV2WidgetBarChartDefinitionRequestSortOrderBy, PowerpackV2WidgetBarChartDefinitionRequestSortOrderByArgs
- Formula
Sort PowerpackV2Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- Group
Sort PowerpackV2Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- Formula
Sort PowerpackV2Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- Group
Sort PowerpackV2Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula_
sort object - Sort by a formula value.
- group_
sort object - Sort by a group (tag) value.
- formula
Sort PowerpackV2Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group
Sort PowerpackV2Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula
Sort PowerpackV2Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group
Sort PowerpackV2Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula_
sort PowerpackV2Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group_
sort PowerpackV2Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula
Sort Property Map - Sort by a formula value.
- group
Sort Property Map - Sort by a group (tag) value.
PowerpackV2WidgetBarChartDefinitionRequestSortOrderByFormulaSort, PowerpackV2WidgetBarChartDefinitionRequestSortOrderByFormulaSortArgs
PowerpackV2WidgetBarChartDefinitionRequestSortOrderByGroupSort, PowerpackV2WidgetBarChartDefinitionRequestSortOrderByGroupSortArgs
PowerpackV2WidgetBarChartDefinitionRequestStyle, PowerpackV2WidgetBarChartDefinitionRequestStyleArgs
PowerpackV2WidgetBarChartDefinitionStyle, PowerpackV2WidgetBarChartDefinitionStyleArgs
- Display
Powerpack
V2Widget Bar Chart Definition Style Display - 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
Powerpack
V2Widget Bar Chart Definition Style Display - 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
Powerpack
V2Widget Bar Chart Definition Style Display - 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
Powerpack
V2Widget Bar Chart Definition Style Display - 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
Powerpack
V2Widget Bar Chart Definition Style Display - 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
Powerpack
V2Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- Stacked
Powerpack
V2Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- Flat
Powerpack
V2Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- Stacked
Powerpack
V2Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Powerpack
V2Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Powerpack
V2Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Powerpack
V2Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Powerpack
V2Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Powerpack
V2Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Powerpack
V2Widget Bar Chart Definition Style Display Stacked - 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
Powerpack
V2Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Bar Chart Definition Time Live - 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
PowerpackV2WidgetBarChartDefinitionTimeLive, PowerpackV2WidgetBarChartDefinitionTimeLiveArgs
PowerpackV2WidgetChangeDefinition, PowerpackV2WidgetChangeDefinitionArgs
- Custom
Links List<PowerpackV2Widget Change Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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<Powerpack
V2Widget Change Definition Request> - 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,securityQueryorprocessQueryis required within the request block). - Time
Powerpack
V2Widget Change Definition Time - 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).
- Custom
Links []PowerpackV2Widget Change Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
[]Powerpack
V2Widget Change Definition Request - 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,securityQueryorprocessQueryis required within the request block). - Time
Powerpack
V2Widget Change Definition Time - 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).
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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,securityQueryorprocessQueryis 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).
- custom
Links List<PowerpackV2Widget Change Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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<Powerpack
V2Widget Change Definition Request> - 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,securityQueryorprocessQueryis required within the request block). - time
Powerpack
V2Widget Change Definition Time - 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).
- custom
Links PowerpackV2Widget Change Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Change Definition Request[] - 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,securityQueryorprocessQueryis required within the request block). - time
Powerpack
V2Widget Change Definition Time - 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).
- custom_
links Sequence[PowerpackV2Widget Change Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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[Powerpack
V2Widget Change Definition Request] - 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,securityQueryorprocessQueryis required within the request block). - time
Powerpack
V2Widget Change Definition Time - 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).
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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<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,securityQueryorprocessQueryis 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.
- 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).
PowerpackV2WidgetChangeDefinitionCustomLink, PowerpackV2WidgetChangeDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetChangeDefinitionRequest, PowerpackV2WidgetChangeDefinitionRequestArgs
- Apm
Query PowerpackV2Widget Change Definition Request Apm Query - The query to use for this widget. 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<Powerpack
V2Widget Change Definition Request Formula> - 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 PowerpackV2Widget Change Definition Request Log Query - The query to use for this widget. 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 PowerpackV2Widget Change Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Change Definition Request Query> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Change Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Show
Present bool - If set to
true, displays the current value.
- Apm
Query PowerpackV2Widget Change Definition Request Apm Query - The query to use for this widget. 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
[]Powerpack
V2Widget Change Definition Request Formula - 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 PowerpackV2Widget Change Definition Request Log Query - The query to use for this widget. 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 PowerpackV2Widget Change Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Change Definition Request Query - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Change Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Show
Present 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.
- 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. Deprecated. Use queries and formulas instead.
- show_
present bool - If set to
true, displays the current value.
- apm
Query PowerpackV2Widget Change Definition Request Apm Query - The query to use for this widget. 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<Powerpack
V2Widget Change Definition Request Formula> - A list of formulas to use in the widget.
- increase
Good Boolean - A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
- log
Query PowerpackV2Widget Change Definition Request Log Query - The query to use for this widget. 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 PowerpackV2Widget Change Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Change Definition Request Query> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Change Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- show
Present Boolean - If set to
true, displays the current value.
- apm
Query PowerpackV2Widget Change Definition Request Apm Query - The query to use for this widget. 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
Powerpack
V2Widget Change Definition Request Formula[] - A list of formulas to use in the widget.
- increase
Good boolean - A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
- log
Query PowerpackV2Widget Change Definition Request Log Query - The query to use for this widget. 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 PowerpackV2Widget Change Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Change Definition Request Query[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Change Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- show
Present boolean - If set to
true, displays the current value.
- apm_
query PowerpackV2Widget Change Definition Request Apm Query - The query to use for this widget. 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[Powerpack
V2Widget Change Definition Request Formula] - 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 PowerpackV2Widget Change Definition Request Log Query - The query to use for this widget. 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 PowerpackV2Widget Change Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Change Definition Request Query] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Change Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- show_
present bool - If set to
true, displays the current value.
- apm
Query Property Map - The query to use for this widget. 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<Property Map>
- A list of formulas to use in the widget.
- increase
Good Boolean - A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
- log
Query Property Map - The query to use for this widget. 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 Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- show
Present 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. - Compute
Query PowerpackV2Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Change Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Change Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Change Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Change Definition Request Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Change Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Change Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Change Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Change Definition Request Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Change Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Change Definition Request Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Change Definition Request Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Change Definition Request Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Change Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Change Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Change Definition Request Apm Query Group By Sort Query - 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 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
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Change Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Change Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Change Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Change Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Change Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Change Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Change Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Change Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Change Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Change Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Change Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Change Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetChangeDefinitionRequestFormulaLimit, PowerpackV2WidgetChangeDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Powerpack
V2Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Powerpack
V2Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Change Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Change Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Change Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Change Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Change Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Change Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Change Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Change Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Change Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Change Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Change Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Change Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Change Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Change Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Change Definition Request Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetChangeDefinitionRequestQuery, PowerpackV2WidgetChangeDefinitionRequestQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetChangeDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetChangeDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetChangeDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetChangeDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetChangeDefinitionRequestQueryEventQuery, PowerpackV2WidgetChangeDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Change Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Change Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Change Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Change Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Change Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Change Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Change Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Change Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Change Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Change Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Change Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Change Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Change Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Change Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Change Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Change Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Change Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Change Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Change Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Change Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Change Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Change Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Change Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Change Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Change Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Change Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Change Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Change Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Change Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Change Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetChangeDefinitionRequestQueryProcessQuery, PowerpackV2WidgetChangeDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetChangeDefinitionRequestQuerySloQuery, PowerpackV2WidgetChangeDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Change Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Change Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Change Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Change Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Change Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Change Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Change Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Change Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Change Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Change Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Change Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Change Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Change Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Change Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Change Definition Request Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Change Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Change Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Change Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Change Definition Request Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Change Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Change Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Change Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Change Definition Request Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Change Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Change Definition Request Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Change Definition Request Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Change Definition Request Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Change Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Change Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Change Definition Request Security Query Group By Sort Query - 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 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
Powerpack
V2Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Change Definition Time Live - 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
PowerpackV2WidgetChangeDefinitionTimeLive, PowerpackV2WidgetChangeDefinitionTimeLiveArgs
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.
- Group
Bies List<string> - When
grouping = "cluster", indicates a list of tags to use for grouping. - Hide
Incomplete boolCost Data - 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. - List<string>
- A list of tags used to filter the groups reporting a cluster check.
- Time
Powerpack
V2Widget Check Status Definition Time - 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.
- Group
Bies []string - When
grouping = "cluster", indicates a list of tags to use for grouping. - Hide
Incomplete boolCost Data - 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. - []string
- A list of tags used to filter the groups reporting a cluster check.
- Time
Powerpack
V2Widget Check Status Definition Time - 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.
- group_
bies list(string) - When
grouping = "cluster", indicates a list of tags to use for grouping. - hide_
incomplete_ boolcost_ data - 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. - 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.
- group
Bies List<String> - When
grouping = "cluster", indicates a list of tags to use for grouping. - hide
Incomplete BooleanCost Data - 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. - List<String>
- A list of tags used to filter the groups reporting a cluster check.
- time
Powerpack
V2Widget Check Status Definition Time - 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.
- group
Bies string[] - When
grouping = "cluster", indicates a list of tags to use for grouping. - hide
Incomplete booleanCost Data - 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. - string[]
- A list of tags used to filter the groups reporting a cluster check.
- time
Powerpack
V2Widget Check Status Definition Time - 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 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_ boolcost_ data - 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. - Sequence[str]
- A list of tags used to filter the groups reporting a cluster check.
- time
Powerpack
V2Widget Check Status Definition Time - 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.
- group
Bies List<String> - When
grouping = "cluster", indicates a list of tags to use for grouping. - hide
Incomplete BooleanCost Data - 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. - 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.
- 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).
PowerpackV2WidgetCheckStatusDefinitionTime, PowerpackV2WidgetCheckStatusDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Check Status Definition Time Live - 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
PowerpackV2WidgetCheckStatusDefinitionTimeLive, PowerpackV2WidgetCheckStatusDefinitionTimeLiveArgs
PowerpackV2WidgetDistributionDefinition, PowerpackV2WidgetDistributionDefinitionArgs
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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<Powerpack
V2Widget Distribution Definition Marker> - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - Requests
List<Powerpack
V2Widget Distribution Definition Request> - 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,securityQueryorprocessQueryis required within the request block). - Show
Legend bool - Whether or not to show the legend on this widget.
- Time
Powerpack
V2Widget Distribution Definition Time - 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
Powerpack
V2Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- Yaxis
Powerpack
V2Widget Distribution Definition Yaxis - 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 boolCost Data - 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
[]Powerpack
V2Widget Distribution Definition Marker - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - Requests
[]Powerpack
V2Widget Distribution Definition Request - 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,securityQueryorprocessQueryis required within the request block). - Show
Legend bool - Whether or not to show the legend on this widget.
- Time
Powerpack
V2Widget Distribution Definition Time - 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
Powerpack
V2Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- Yaxis
Powerpack
V2Widget Distribution Definition Yaxis - 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_ boolcost_ data - 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
markerblocks are allowed within a givendistributionDefinitionblock. - 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,securityQueryorprocessQueryis 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.
- hide
Incomplete BooleanCost Data - 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<Powerpack
V2Widget Distribution Definition Marker> - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - requests
List<Powerpack
V2Widget Distribution Definition Request> - 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,securityQueryorprocessQueryis required within the request block). - show
Legend Boolean - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Distribution Definition Time - 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
Powerpack
V2Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Distribution Definition Yaxis - 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 booleanCost Data - 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
Powerpack
V2Widget Distribution Definition Marker[] - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - requests
Powerpack
V2Widget Distribution Definition Request[] - 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,securityQueryorprocessQueryis required within the request block). - show
Legend boolean - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Distribution Definition Time - 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
Powerpack
V2Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Distribution Definition Yaxis - 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_ boolcost_ data - 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[Powerpack
V2Widget Distribution Definition Marker] - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - requests
Sequence[Powerpack
V2Widget Distribution Definition Request] - 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,securityQueryorprocessQueryis required within the request block). - show_
legend bool - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Distribution Definition Time - 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
Powerpack
V2Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Distribution Definition Yaxis - 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 BooleanCost Data - 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<Property Map>
- A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - 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,securityQueryorprocessQueryis required within the request block). - show
Legend 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.
- 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 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - Display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - Display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display_
type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type String - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display_
type str - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type String - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. Example:error dashed. - label String
- Label to display over the marker.
- time String
- Timestamp for the marker position.
PowerpackV2WidgetDistributionDefinitionRequest, PowerpackV2WidgetDistributionDefinitionRequestArgs
- Apm
Query PowerpackV2Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats PowerpackQuery V2Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- Formulas
List<Powerpack
V2Widget Distribution Definition Request Formula> - A list of formulas to use in the widget.
- Histogram
Query PowerpackV2Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- Log
Query PowerpackV2Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Distribution Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Distribution Definition Request Query> - 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 PowerpackV2Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Powerpack
V2Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- Apm
Query PowerpackV2Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats PowerpackQuery V2Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- Formulas
[]Powerpack
V2Widget Distribution Definition Request Formula - A list of formulas to use in the widget.
- Histogram
Query PowerpackV2Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- Log
Query PowerpackV2Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Distribution Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Distribution Definition Request Query - 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 PowerpackV2Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Powerpack
V2Widget Distribution Definition Request Style - 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.
- apm_
stats_ objectquery - 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style object
- The style of the widget graph. One nested block is allowed using the structure below.
- apm
Query PowerpackV2Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats PowerpackQuery V2Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
List<Powerpack
V2Widget Distribution Definition Request Formula> - A list of formulas to use in the widget.
- histogram
Query PowerpackV2Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log
Query PowerpackV2Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Distribution Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Distribution Definition Request Query> - 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 PowerpackV2Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Powerpack
V2Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm
Query PowerpackV2Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats PowerpackQuery V2Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
Powerpack
V2Widget Distribution Definition Request Formula[] - A list of formulas to use in the widget.
- histogram
Query PowerpackV2Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log
Query PowerpackV2Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Distribution Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Distribution Definition Request Query[] - 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 PowerpackV2Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Powerpack
V2Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm_
query PowerpackV2Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
stats_ Powerpackquery V2Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
Sequence[Powerpack
V2Widget Distribution Definition Request Formula] - A list of formulas to use in the widget.
- histogram_
query PowerpackV2Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log_
query PowerpackV2Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Distribution Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Distribution Definition Request Query] - 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 PowerpackV2Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Powerpack
V2Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats Property MapQuery - The APM stats query to use in the widget.
- formulas List<Property Map>
- A list of formulas to use in the widget.
- histogram
Query Property Map - Singular query block for histogram-mode distribution requests.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- 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 Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Distribution Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Distribution Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Distribution Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Distribution Definition Request Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Distribution Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Distribution Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Distribution Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Distribution Definition Request Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Distribution Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Distribution Definition Request Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Distribution Definition Request Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Distribution Definition Request Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Distribution Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Distribution Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Distribution Definition Request Apm Query Group By Sort Query - 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 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.
- 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<Powerpack
V2Widget Distribution Definition Request Apm Stats Query Column> - 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
[]Powerpack
V2Widget Distribution Definition Request Apm Stats Query Column - 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.
- 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<Powerpack
V2Widget Distribution Definition Request Apm Stats Query Column> - 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
Powerpack
V2Widget Distribution Definition Request Apm Stats Query Column[] - 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[Powerpack
V2Widget Distribution Definition Request Apm Stats Query Column] - 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.
- 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<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.
- Cell
Display stringMode - 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 stringMode - 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_ stringmode - 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 StringMode - 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 stringMode - 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_ strmode - 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.
- cell
Display StringMode - 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
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Distribution Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Distribution Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Distribution Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Distribution Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Distribution Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Distribution Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Distribution Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Distribution Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Distribution Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Distribution Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetDistributionDefinitionRequestFormulaLimit, PowerpackV2WidgetDistributionDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Distribution Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index Number - Index specifying which color to use within the palette.
PowerpackV2WidgetDistributionDefinitionRequestHistogramQuery, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryArgs
- Apm
Resource PowerpackStats Query V2Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- Event
Query PowerpackV2Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- Metric
Query PowerpackV2Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- Apm
Resource PowerpackStats Query V2Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- Event
Query PowerpackV2Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- Metric
Query PowerpackV2Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm_
resource_ objectstats_ query - 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.
- apm
Resource PowerpackStats Query V2Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event
Query PowerpackV2Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric
Query PowerpackV2Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm
Resource PowerpackStats Query V2Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event
Query PowerpackV2Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric
Query PowerpackV2Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm_
resource_ Powerpackstats_ query V2Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event_
query PowerpackV2Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric_
query PowerpackV2Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm
Resource Property MapStats Query - APM resource stats query for histogram-mode distribution.
- event
Query Property Map - Event query for histogram-mode distribution.
- metric
Query Property Map - Metric query for histogram-mode distribution.
PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQuery, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQuery, PowerpackV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Distribution Definition Request Histogram Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Distribution Definition Request Histogram Query Event Query Group By Fields - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Distribution Definition Request Histogram Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Distribution Definition Request Histogram Query Event Query Group By Fields - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Distribution Definition Request Histogram Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Distribution Definition Request Histogram Query Event Query Group By Fields - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Distribution Definition Request Histogram Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Distribution Definition Request Histogram Query Event Query Group By Fields - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Distribution Definition Request Histogram Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Distribution Definition Request Histogram Query Event Query Group By Fields - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Group By Sort - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Distribution Definition Request Histogram Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetDistributionDefinitionRequestLogQuery, PowerpackV2WidgetDistributionDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query PowerpackV2Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Distribution Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Distribution Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Distribution Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Distribution Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Distribution Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Distribution Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Distribution Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Distribution Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Distribution Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Distribution Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Distribution Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Distribution Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Distribution Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Distribution Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Distribution Definition Request Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetDistributionDefinitionRequestQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetDistributionDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetDistributionDefinitionRequestQueryEventQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Distribution Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Distribution Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Distribution Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Distribution Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Distribution Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Distribution Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Distribution Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Distribution Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Distribution Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Distribution Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Distribution Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Distribution Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Distribution Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Distribution Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Distribution Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Distribution Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Distribution Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Distribution Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Distribution Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Distribution Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetDistributionDefinitionRequestQueryProcessQuery, PowerpackV2WidgetDistributionDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetDistributionDefinitionRequestQuerySloQuery, PowerpackV2WidgetDistributionDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Distribution Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Distribution Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Distribution Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Distribution Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Distribution Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Distribution Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Distribution Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Distribution Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Distribution Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Distribution Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Distribution Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Distribution Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Distribution Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Distribution Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Distribution Definition Request Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Distribution Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Distribution Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Distribution Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Distribution Definition Request Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Distribution Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Distribution Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Distribution Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Distribution Definition Request Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Distribution Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Distribution Definition Request Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Distribution Definition Request Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Distribution Definition Request Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Distribution Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Distribution Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Distribution Definition Request Security Query Group By Sort Query - 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 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
PowerpackV2WidgetDistributionDefinitionTime, PowerpackV2WidgetDistributionDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Distribution Definition Time Live - 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
PowerpackV2WidgetDistributionDefinitionTimeLive, PowerpackV2WidgetDistributionDefinitionTimeLiveArgs
PowerpackV2WidgetDistributionDefinitionXaxis, PowerpackV2WidgetDistributionDefinitionXaxisArgs
- 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 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 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.
- include
Zero 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.
- num
Buckets 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.
- include
Zero 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.
- 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.
- 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.
- include
Zero 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.
- 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.
PowerpackV2WidgetDistributionDefinitionYaxis, PowerpackV2WidgetDistributionDefinitionYaxisArgs
- 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
linearorlog.
- 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
linearorlog.
- 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
linearorlog.
- include
Zero 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
linearorlog.
- include
Zero 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
linearorlog.
- 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
linearorlog.
- include
Zero 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
linearorlog.
PowerpackV2WidgetEventStreamDefinition, PowerpackV2WidgetEventStreamDefinitionArgs
- 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 boolCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - Time
Powerpack
V2Widget Event Stream Definition Time - 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.
- Event
Size string - Size to use to display an event. Valid values are
s,l. - Hide
Incomplete boolCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - Time
Powerpack
V2Widget Event Stream Definition Time - 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.
- event_
size string - Size to use to display an event. Valid values are
s,l. - hide_
incomplete_ boolcost_ data - 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. - string
- The execution method for multi-value filters, options:
andoror. - 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.
- event
Size String - Size to use to display an event. Valid values are
s,l. - hide
Incomplete BooleanCost Data - 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. - String
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Event Stream Definition Time - 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.
- event
Size string - Size to use to display an event. Valid values are
s,l. - hide
Incomplete booleanCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Event Stream Definition Time - 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 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_ boolcost_ data - 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. - str
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Event Stream Definition Time - 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.
- event
Size String - Size to use to display an event. Valid values are
s,l. - hide
Incomplete BooleanCost Data - 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. - String
- The execution method for multi-value filters, options:
andoror. - 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.
- 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).
PowerpackV2WidgetEventStreamDefinitionTime, PowerpackV2WidgetEventStreamDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Event Stream Definition Time Live - 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
PowerpackV2WidgetEventStreamDefinitionTimeLive, PowerpackV2WidgetEventStreamDefinitionTimeLiveArgs
PowerpackV2WidgetEventTimelineDefinition, PowerpackV2WidgetEventTimelineDefinitionArgs
- Query string
- Query to filter the event timeline with.
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - Time
Powerpack
V2Widget Event Timeline Definition Time - 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.
- Hide
Incomplete boolCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - Time
Powerpack
V2Widget Event Timeline Definition Time - 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.
- hide_
incomplete_ boolcost_ data - 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. - string
- The execution method for multi-value filters, options:
andoror. - 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.
- hide
Incomplete BooleanCost Data - 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. - String
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Event Timeline Definition Time - 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.
- hide
Incomplete booleanCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Event Timeline Definition Time - 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 str
- Query to filter the event timeline with.
- description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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. - str
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Event Timeline Definition Time - 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.
- hide
Incomplete BooleanCost Data - 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. - String
- The execution method for multi-value filters, options:
andoror. - 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.
- 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).
PowerpackV2WidgetEventTimelineDefinitionTime, PowerpackV2WidgetEventTimelineDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Event Timeline Definition Time Live - 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
PowerpackV2WidgetEventTimelineDefinitionTimeLive, PowerpackV2WidgetEventTimelineDefinitionTimeLiveArgs
PowerpackV2WidgetFreeTextDefinition, PowerpackV2WidgetFreeTextDefinitionArgs
- 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 boolCost Data - 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
Powerpack
V2Widget Free Text Definition Time - 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.
- 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 boolCost Data - 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
Powerpack
V2Widget Free Text Definition Time - 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.
- 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_ boolcost_ data - 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.
- 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 BooleanCost Data - 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
Powerpack
V2Widget Free Text Definition Time - 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.
- 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 booleanCost Data - 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
Powerpack
V2Widget Free Text Definition Time - 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 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_ boolcost_ data - 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
Powerpack
V2Widget Free Text Definition Time - 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.
- 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 BooleanCost Data - 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 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.
- 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).
PowerpackV2WidgetFreeTextDefinitionTime, PowerpackV2WidgetFreeTextDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Free Text Definition Time Live - 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
PowerpackV2WidgetFreeTextDefinitionTimeLive, PowerpackV2WidgetFreeTextDefinitionTimeLiveArgs
PowerpackV2WidgetFunnelDefinition, PowerpackV2WidgetFunnelDefinitionArgs
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - Time
Powerpack
V2Widget Funnel Definition Time - 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.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - Time
Powerpack
V2Widget Funnel Definition Time - 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.
- hide_
incomplete_ boolcost_ data - 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
requestblock 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.
- hide
Incomplete BooleanCost Data - 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
Powerpack
V2Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - time
Powerpack
V2Widget Funnel Definition Time - 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.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - time
Powerpack
V2Widget Funnel Definition Time - 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 str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - time
Powerpack
V2Widget Funnel Definition Time - 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.
- hide
Incomplete BooleanCost Data - 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 Property Map
- A nested block describing the request to use when displaying the widget. Only one
requestblock 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.
- 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).
PowerpackV2WidgetFunnelDefinitionRequest, PowerpackV2WidgetFunnelDefinitionRequestArgs
- Query
Powerpack
V2Widget Funnel Definition Request Query - The query for the funnel widget request.
- Query
Powerpack
V2Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Powerpack
V2Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Powerpack
V2Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Powerpack
V2Widget Funnel Definition Request Query - The query for the funnel widget request.
- query Property Map
- The query for the funnel widget request.
PowerpackV2WidgetFunnelDefinitionRequestQuery, PowerpackV2WidgetFunnelDefinitionRequestQueryArgs
- Data
Source string - The data source for funnel queries. Valid values are
rum. - Query
String string - The widget query.
- Steps
List<Powerpack
V2Widget Funnel Definition Request Query Step> - The funnel steps. Multiple
stepblocks are allowed.
- Data
Source string - The data source for funnel queries. Valid values are
rum. - Query
String string - The widget query.
- Steps
[]Powerpack
V2Widget Funnel Definition Request Query Step - The funnel steps. Multiple
stepblocks 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
stepblocks are allowed.
- data
Source String - The data source for funnel queries. Valid values are
rum. - query
String String - The widget query.
- steps
List<Powerpack
V2Widget Funnel Definition Request Query Step> - The funnel steps. Multiple
stepblocks are allowed.
- data
Source string - The data source for funnel queries. Valid values are
rum. - query
String string - The widget query.
- steps
Powerpack
V2Widget Funnel Definition Request Query Step[] - The funnel steps. Multiple
stepblocks are allowed.
- data_
source str - The data source for funnel queries. Valid values are
rum. - query_
string str - The widget query.
- steps
Sequence[Powerpack
V2Widget Funnel Definition Request Query Step] - The funnel steps. Multiple
stepblocks are allowed.
- data
Source String - The data source for funnel queries. Valid values are
rum. - query
String String - The widget query.
- steps List<Property Map>
- The funnel steps. Multiple
stepblocks are allowed.
PowerpackV2WidgetFunnelDefinitionRequestQueryStep, PowerpackV2WidgetFunnelDefinitionRequestQueryStepArgs
PowerpackV2WidgetFunnelDefinitionTime, PowerpackV2WidgetFunnelDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Funnel Definition Time Live - 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
PowerpackV2WidgetFunnelDefinitionTimeLive, PowerpackV2WidgetFunnelDefinitionTimeLiveArgs
PowerpackV2WidgetGeomapDefinition, PowerpackV2WidgetGeomapDefinitionArgs
- Custom
Links List<PowerpackV2Widget Geomap Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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<Powerpack
V2Widget Geomap Definition Request> - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - Style
Powerpack
V2Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Powerpack
V2Widget Geomap Definition Time - 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
Powerpack
V2Widget Geomap Definition View - The view of the world that the map should render.
- Custom
Links []PowerpackV2Widget Geomap Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
[]Powerpack
V2Widget Geomap Definition Request - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - Style
Powerpack
V2Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Powerpack
V2Widget Geomap Definition Time - 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
Powerpack
V2Widget Geomap Definition View - The view of the world that the map should render.
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - 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.
- custom
Links List<PowerpackV2Widget Geomap Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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<Powerpack
V2Widget Geomap Definition Request> - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - style
Powerpack
V2Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Powerpack
V2Widget Geomap Definition Time - 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
Powerpack
V2Widget Geomap Definition View - The view of the world that the map should render.
- custom
Links PowerpackV2Widget Geomap Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Geomap Definition Request[] - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - style
Powerpack
V2Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Powerpack
V2Widget Geomap Definition Time - 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
Powerpack
V2Widget Geomap Definition View - The view of the world that the map should render.
- custom_
links Sequence[PowerpackV2Widget Geomap Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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[Powerpack
V2Widget Geomap Definition Request] - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - style
Powerpack
V2Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Powerpack
V2Widget Geomap Definition Time - 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
Powerpack
V2Widget Geomap Definition View - The view of the world that the map should render.
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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<Property Map>
- A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - 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.
- 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 Property Map
- The view of the world that the map should render.
PowerpackV2WidgetGeomapDefinitionCustomLink, PowerpackV2WidgetGeomapDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGeomapDefinitionRequest, PowerpackV2WidgetGeomapDefinitionRequestArgs
- Formulas
List<Powerpack
V2Widget Geomap Definition Request Formula> - List of formulas that operate on queries.
- Log
Query PowerpackV2Widget Geomap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Geomap Definition Request Query> - List of queries that can be returned directly or used in formulas.
- Rum
Query PowerpackV2Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Powerpack
V2Widget Geomap Definition Request Formula - List of formulas that operate on queries.
- Log
Query PowerpackV2Widget Geomap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Geomap Definition Request Query - List of queries that can be returned directly or used in formulas.
- Rum
Query PowerpackV2Widget Geomap Definition Request Rum Query - The query to use for this widget. 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.
- q string
- The metric query to use for this widget. 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.
- formulas
List<Powerpack
V2Widget Geomap Definition Request Formula> - List of formulas that operate on queries.
- log
Query PowerpackV2Widget Geomap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Geomap Definition Request Query> - List of queries that can be returned directly or used in formulas.
- rum
Query PowerpackV2Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Powerpack
V2Widget Geomap Definition Request Formula[] - List of formulas that operate on queries.
- log
Query PowerpackV2Widget Geomap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Geomap Definition Request Query[] - List of queries that can be returned directly or used in formulas.
- rum
Query PowerpackV2Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Powerpack
V2Widget Geomap Definition Request Formula] - List of formulas that operate on queries.
- log_
query PowerpackV2Widget Geomap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Geomap Definition Request Query] - List of queries that can be returned directly or used in formulas.
- rum_
query PowerpackV2Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas List<Property Map>
- List of formulas that operate on queries.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- List of queries that can be returned directly or used in formulas.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
PowerpackV2WidgetGeomapDefinitionRequestFormula, PowerpackV2WidgetGeomapDefinitionRequestFormulaArgs
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Geomap Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Geomap Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Geomap Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Geomap Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Geomap Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Geomap Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Geomap Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Geomap Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Geomap Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Geomap Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGeomapDefinitionRequestFormulaLimit, PowerpackV2WidgetGeomapDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Geomap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Geomap Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Geomap Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Geomap Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Geomap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Geomap Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Geomap Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Geomap Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Geomap Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Geomap Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Geomap Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Geomap Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Geomap Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Geomap Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Geomap Definition Request Log Query Group By Sort Query - 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 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
- Apm
Dependency PowerpackStats Query V2Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGeomapDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGeomapDefinitionRequestQueryEventQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Geomap Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Geomap Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Geomap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Geomap Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Geomap Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Geomap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Geomap Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Geomap Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Geomap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Geomap Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Geomap Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Geomap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Geomap Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Geomap Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Geomap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Geomap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Geomap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Geomap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Geomap Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Geomap Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGeomapDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGeomapDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGeomapDefinitionRequestQuerySloQuery, PowerpackV2WidgetGeomapDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Geomap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Geomap Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Geomap Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Geomap Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Geomap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Geomap Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Geomap Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Geomap Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Geomap Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Geomap Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Geomap Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Geomap Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Geomap Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Geomap Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Geomap Definition Request Rum Query Group By Sort Query - 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 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.
- Palette
Flip 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.
- palette_
flip bool - A Boolean indicating whether to flip the palette tones.
- palette String
- The color palette to apply to the widget.
- palette
Flip Boolean - A Boolean indicating whether to flip the palette tones.
- palette string
- The color palette to apply to the widget.
- palette
Flip 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.
- palette
Flip Boolean - A Boolean indicating whether to flip the palette tones.
PowerpackV2WidgetGeomapDefinitionTime, PowerpackV2WidgetGeomapDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Geomap Definition Time Live - 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
PowerpackV2WidgetGeomapDefinitionTimeLive, PowerpackV2WidgetGeomapDefinitionTimeLiveArgs
PowerpackV2WidgetGeomapDefinitionView, PowerpackV2WidgetGeomapDefinitionViewArgs
- Focus string
- The 2-letter ISO code of a country to focus the map on, or
WORLDfor 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
WORLDfor 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
WORLDfor 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
WORLDfor 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
WORLDfor 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
WORLDfor 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
WORLDfor global view, or a region (EMEA,APAC,LATAM), or a continent (NORTH_AMERICA,SOUTH_AMERICA,EUROPE,AFRICA,ASIA,OCEANIA).
PowerpackV2WidgetGroupDefinition, PowerpackV2WidgetGroupDefinitionArgs
- 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,grayorwhite - string
- The image URL to display as a banner for the group.
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Time - 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<Powerpack
V2Widget Group Definition Widget> - 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,grayorwhite - string
- The image URL to display as a banner for the group.
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Time - 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
[]Powerpack
V2Widget Group Definition Widget - 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,grayorwhite - string
- The image URL to display as a banner for the group.
- description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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.
- 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,grayorwhite - String
- The image URL to display as a banner for the group.
- description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 Boolean - Whether to show the title or not. Defaults to
true. - time
Powerpack
V2Widget Group Definition Time - 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<Powerpack
V2Widget Group Definition Widget> - 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,grayorwhite - string
- The image URL to display as a banner for the group.
- description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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 boolean - Whether to show the title or not. Defaults to
true. - time
Powerpack
V2Widget Group Definition Time - 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
Powerpack
V2Widget Group Definition Widget[] - 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,grayorwhite - str
- The image URL to display as a banner for the group.
- description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Time - 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[Powerpack
V2Widget Group Definition Widget] - 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,grayorwhite - String
- The image URL to display as a banner for the group.
- description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 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.
- 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<Property Map>
- The list of widgets in this group.
PowerpackV2WidgetGroupDefinitionTime, PowerpackV2WidgetGroupDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidget, PowerpackV2WidgetGroupDefinitionWidgetArgs
- Alert
Graph PowerpackDefinition V2Widget Group Definition Widget Alert Graph Definition - The definition for a Alert Graph widget.
- Alert
Value PowerpackDefinition V2Widget Group Definition Widget Alert Value Definition - The definition for a Alert Value widget.
- Bar
Chart PowerpackDefinition V2Widget Group Definition Widget Bar Chart Definition - The definition for a Bar Chart widget.
- Change
Definition PowerpackV2Widget Group Definition Widget Change Definition - The definition for a Change widget.
- Check
Status PowerpackDefinition V2Widget Group Definition Widget Check Status Definition - The definition for a Check Status widget.
- Distribution
Definition PowerpackV2Widget Group Definition Widget Distribution Definition - The definition for a Distribution widget.
- Event
Stream PowerpackDefinition V2Widget Group Definition Widget Event Stream Definition - The definition for a Event Stream widget.
- Event
Timeline PowerpackDefinition V2Widget Group Definition Widget Event Timeline Definition - The definition for a Event Timeline widget.
- Free
Text PowerpackDefinition V2Widget Group Definition Widget Free Text Definition - The definition for a Free Text widget.
- Funnel
Definition PowerpackV2Widget Group Definition Widget Funnel Definition - The definition for a Funnel widget.
- Geomap
Definition PowerpackV2Widget Group Definition Widget Geomap Definition - The definition for a Geomap widget.
- Heatmap
Definition PowerpackV2Widget Group Definition Widget Heatmap Definition - The definition for a Heatmap widget.
- Hostmap
Definition PowerpackV2Widget Group Definition Widget Hostmap Definition - The definition for a Hostmap widget.
- Id int
- The ID of the widget.
- Iframe
Definition PowerpackV2Widget Group Definition Widget Iframe Definition - The definition for an Iframe widget.
- Image
Definition PowerpackV2Widget Group Definition Widget Image Definition - The definition for an Image widget
- List
Stream PowerpackDefinition V2Widget Group Definition Widget List Stream Definition - The definition for a List Stream widget.
- Log
Stream PowerpackDefinition V2Widget Group Definition Widget Log Stream Definition - The definition for an Log Stream widget.
- Manage
Status PowerpackDefinition V2Widget Group Definition Widget Manage Status Definition - The definition for an Manage Status widget.
- Note
Definition PowerpackV2Widget Group Definition Widget Note Definition - The definition for a Note widget.
- Point
Plot PowerpackDefinition V2Widget Group Definition Widget Point Plot Definition - The definition for a Point Plot widget.
- Query
Table PowerpackDefinition V2Widget Group Definition Widget Query Table Definition - The definition for a Query Table widget.
- Query
Value PowerpackDefinition V2Widget Group Definition Widget Query Value Definition - The definition for a Query Value widget.
- Run
Workflow PowerpackDefinition V2Widget Group Definition Widget Run Workflow Definition - The definition for a Run Workflow widget.
- Sankey
Definition PowerpackV2Widget Group Definition Widget Sankey Definition - The definition for a Sankey diagram widget.
- Scatterplot
Definition PowerpackV2Widget Group Definition Widget Scatterplot Definition - The definition for a Scatterplot widget.
- Service
Level PowerpackObjective Definition V2Widget Group Definition Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- Servicemap
Definition PowerpackV2Widget Group Definition Widget Servicemap Definition - The definition for a Service Map widget.
- Slo
List PowerpackDefinition V2Widget Group Definition Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- Sunburst
Definition PowerpackV2Widget Group Definition Widget Sunburst Definition - The definition for a Sunburst widget.
- Timeseries
Definition PowerpackV2Widget Group Definition Widget Timeseries Definition - The definition for a Timeseries widget.
- Toplist
Definition PowerpackV2Widget Group Definition Widget Toplist Definition - The definition for a Toplist widget.
- Topology
Map PowerpackDefinition V2Widget Group Definition Widget Topology Map Definition - The definition for a Topology Map widget.
- Trace
Service PowerpackDefinition V2Widget Group Definition Widget Trace Service Definition - The definition for a Trace Service widget.
- Treemap
Definition PowerpackV2Widget Group Definition Widget Treemap Definition - The definition for a Treemap widget.
- Widget
Layout PowerpackV2Widget Group Definition Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- Wildcard
Definition PowerpackV2Widget Group Definition Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- Alert
Graph PowerpackDefinition V2Widget Group Definition Widget Alert Graph Definition - The definition for a Alert Graph widget.
- Alert
Value PowerpackDefinition V2Widget Group Definition Widget Alert Value Definition - The definition for a Alert Value widget.
- Bar
Chart PowerpackDefinition V2Widget Group Definition Widget Bar Chart Definition - The definition for a Bar Chart widget.
- Change
Definition PowerpackV2Widget Group Definition Widget Change Definition - The definition for a Change widget.
- Check
Status PowerpackDefinition V2Widget Group Definition Widget Check Status Definition - The definition for a Check Status widget.
- Distribution
Definition PowerpackV2Widget Group Definition Widget Distribution Definition - The definition for a Distribution widget.
- Event
Stream PowerpackDefinition V2Widget Group Definition Widget Event Stream Definition - The definition for a Event Stream widget.
- Event
Timeline PowerpackDefinition V2Widget Group Definition Widget Event Timeline Definition - The definition for a Event Timeline widget.
- Free
Text PowerpackDefinition V2Widget Group Definition Widget Free Text Definition - The definition for a Free Text widget.
- Funnel
Definition PowerpackV2Widget Group Definition Widget Funnel Definition - The definition for a Funnel widget.
- Geomap
Definition PowerpackV2Widget Group Definition Widget Geomap Definition - The definition for a Geomap widget.
- Heatmap
Definition PowerpackV2Widget Group Definition Widget Heatmap Definition - The definition for a Heatmap widget.
- Hostmap
Definition PowerpackV2Widget Group Definition Widget Hostmap Definition - The definition for a Hostmap widget.
- Id int
- The ID of the widget.
- Iframe
Definition PowerpackV2Widget Group Definition Widget Iframe Definition - The definition for an Iframe widget.
- Image
Definition PowerpackV2Widget Group Definition Widget Image Definition - The definition for an Image widget
- List
Stream PowerpackDefinition V2Widget Group Definition Widget List Stream Definition - The definition for a List Stream widget.
- Log
Stream PowerpackDefinition V2Widget Group Definition Widget Log Stream Definition - The definition for an Log Stream widget.
- Manage
Status PowerpackDefinition V2Widget Group Definition Widget Manage Status Definition - The definition for an Manage Status widget.
- Note
Definition PowerpackV2Widget Group Definition Widget Note Definition - The definition for a Note widget.
- Point
Plot PowerpackDefinition V2Widget Group Definition Widget Point Plot Definition - The definition for a Point Plot widget.
- Query
Table PowerpackDefinition V2Widget Group Definition Widget Query Table Definition - The definition for a Query Table widget.
- Query
Value PowerpackDefinition V2Widget Group Definition Widget Query Value Definition - The definition for a Query Value widget.
- Run
Workflow PowerpackDefinition V2Widget Group Definition Widget Run Workflow Definition - The definition for a Run Workflow widget.
- Sankey
Definition PowerpackV2Widget Group Definition Widget Sankey Definition - The definition for a Sankey diagram widget.
- Scatterplot
Definition PowerpackV2Widget Group Definition Widget Scatterplot Definition - The definition for a Scatterplot widget.
- Service
Level PowerpackObjective Definition V2Widget Group Definition Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- Servicemap
Definition PowerpackV2Widget Group Definition Widget Servicemap Definition - The definition for a Service Map widget.
- Slo
List PowerpackDefinition V2Widget Group Definition Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- Sunburst
Definition PowerpackV2Widget Group Definition Widget Sunburst Definition - The definition for a Sunburst widget.
- Timeseries
Definition PowerpackV2Widget Group Definition Widget Timeseries Definition - The definition for a Timeseries widget.
- Toplist
Definition PowerpackV2Widget Group Definition Widget Toplist Definition - The definition for a Toplist widget.
- Topology
Map PowerpackDefinition V2Widget Group Definition Widget Topology Map Definition - The definition for a Topology Map widget.
- Trace
Service PowerpackDefinition V2Widget Group Definition Widget Trace Service Definition - The definition for a Trace Service widget.
- Treemap
Definition PowerpackV2Widget Group Definition Widget Treemap Definition - The definition for a Treemap widget.
- Widget
Layout PowerpackV2Widget Group Definition Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- Wildcard
Definition PowerpackV2Widget Group Definition Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert_
graph_ objectdefinition - The definition for a Alert Graph widget.
- alert_
value_ objectdefinition - The definition for a Alert Value widget.
- bar_
chart_ objectdefinition - The definition for a Bar Chart widget.
- change_
definition object - The definition for a Change widget.
- check_
status_ objectdefinition - The definition for a Check Status widget.
- distribution_
definition object - The definition for a Distribution widget.
- event_
stream_ objectdefinition - The definition for a Event Stream widget.
- event_
timeline_ objectdefinition - The definition for a Event Timeline widget.
- free_
text_ objectdefinition - 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_ objectdefinition - The definition for a List Stream widget.
- log_
stream_ objectdefinition - The definition for an Log Stream widget.
- manage_
status_ objectdefinition - The definition for an Manage Status widget.
- note_
definition object - The definition for a Note widget.
- point_
plot_ objectdefinition - The definition for a Point Plot widget.
- query_
table_ objectdefinition - The definition for a Query Table widget.
- query_
value_ objectdefinition - The definition for a Query Value widget.
- run_
workflow_ objectdefinition - 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_ objectobjective_ definition - The definition for a Service Level Objective widget.
- servicemap_
definition object - The definition for a Service Map widget.
- slo_
list_ objectdefinition - 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_ objectdefinition - The definition for a Topology Map widget.
- trace_
service_ objectdefinition - 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.
- alert
Graph PowerpackDefinition V2Widget Group Definition Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert
Value PowerpackDefinition V2Widget Group Definition Widget Alert Value Definition - The definition for a Alert Value widget.
- bar
Chart PowerpackDefinition V2Widget Group Definition Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change
Definition PowerpackV2Widget Group Definition Widget Change Definition - The definition for a Change widget.
- check
Status PowerpackDefinition V2Widget Group Definition Widget Check Status Definition - The definition for a Check Status widget.
- distribution
Definition PowerpackV2Widget Group Definition Widget Distribution Definition - The definition for a Distribution widget.
- event
Stream PowerpackDefinition V2Widget Group Definition Widget Event Stream Definition - The definition for a Event Stream widget.
- event
Timeline PowerpackDefinition V2Widget Group Definition Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free
Text PowerpackDefinition V2Widget Group Definition Widget Free Text Definition - The definition for a Free Text widget.
- funnel
Definition PowerpackV2Widget Group Definition Widget Funnel Definition - The definition for a Funnel widget.
- geomap
Definition PowerpackV2Widget Group Definition Widget Geomap Definition - The definition for a Geomap widget.
- heatmap
Definition PowerpackV2Widget Group Definition Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap
Definition PowerpackV2Widget Group Definition Widget Hostmap Definition - The definition for a Hostmap widget.
- id Integer
- The ID of the widget.
- iframe
Definition PowerpackV2Widget Group Definition Widget Iframe Definition - The definition for an Iframe widget.
- image
Definition PowerpackV2Widget Group Definition Widget Image Definition - The definition for an Image widget
- list
Stream PowerpackDefinition V2Widget Group Definition Widget List Stream Definition - The definition for a List Stream widget.
- log
Stream PowerpackDefinition V2Widget Group Definition Widget Log Stream Definition - The definition for an Log Stream widget.
- manage
Status PowerpackDefinition V2Widget Group Definition Widget Manage Status Definition - The definition for an Manage Status widget.
- note
Definition PowerpackV2Widget Group Definition Widget Note Definition - The definition for a Note widget.
- point
Plot PowerpackDefinition V2Widget Group Definition Widget Point Plot Definition - The definition for a Point Plot widget.
- query
Table PowerpackDefinition V2Widget Group Definition Widget Query Table Definition - The definition for a Query Table widget.
- query
Value PowerpackDefinition V2Widget Group Definition Widget Query Value Definition - The definition for a Query Value widget.
- run
Workflow PowerpackDefinition V2Widget Group Definition Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey
Definition PowerpackV2Widget Group Definition Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot
Definition PowerpackV2Widget Group Definition Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service
Level PowerpackObjective Definition V2Widget Group Definition Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap
Definition PowerpackV2Widget Group Definition Widget Servicemap Definition - The definition for a Service Map widget.
- slo
List PowerpackDefinition V2Widget Group Definition Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- sunburst
Definition PowerpackV2Widget Group Definition Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries
Definition PowerpackV2Widget Group Definition Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist
Definition PowerpackV2Widget Group Definition Widget Toplist Definition - The definition for a Toplist widget.
- topology
Map PowerpackDefinition V2Widget Group Definition Widget Topology Map Definition - The definition for a Topology Map widget.
- trace
Service PowerpackDefinition V2Widget Group Definition Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap
Definition PowerpackV2Widget Group Definition Widget Treemap Definition - The definition for a Treemap widget.
- widget
Layout PowerpackV2Widget Group Definition Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard
Definition PowerpackV2Widget Group Definition Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert
Graph PowerpackDefinition V2Widget Group Definition Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert
Value PowerpackDefinition V2Widget Group Definition Widget Alert Value Definition - The definition for a Alert Value widget.
- bar
Chart PowerpackDefinition V2Widget Group Definition Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change
Definition PowerpackV2Widget Group Definition Widget Change Definition - The definition for a Change widget.
- check
Status PowerpackDefinition V2Widget Group Definition Widget Check Status Definition - The definition for a Check Status widget.
- distribution
Definition PowerpackV2Widget Group Definition Widget Distribution Definition - The definition for a Distribution widget.
- event
Stream PowerpackDefinition V2Widget Group Definition Widget Event Stream Definition - The definition for a Event Stream widget.
- event
Timeline PowerpackDefinition V2Widget Group Definition Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free
Text PowerpackDefinition V2Widget Group Definition Widget Free Text Definition - The definition for a Free Text widget.
- funnel
Definition PowerpackV2Widget Group Definition Widget Funnel Definition - The definition for a Funnel widget.
- geomap
Definition PowerpackV2Widget Group Definition Widget Geomap Definition - The definition for a Geomap widget.
- heatmap
Definition PowerpackV2Widget Group Definition Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap
Definition PowerpackV2Widget Group Definition Widget Hostmap Definition - The definition for a Hostmap widget.
- id number
- The ID of the widget.
- iframe
Definition PowerpackV2Widget Group Definition Widget Iframe Definition - The definition for an Iframe widget.
- image
Definition PowerpackV2Widget Group Definition Widget Image Definition - The definition for an Image widget
- list
Stream PowerpackDefinition V2Widget Group Definition Widget List Stream Definition - The definition for a List Stream widget.
- log
Stream PowerpackDefinition V2Widget Group Definition Widget Log Stream Definition - The definition for an Log Stream widget.
- manage
Status PowerpackDefinition V2Widget Group Definition Widget Manage Status Definition - The definition for an Manage Status widget.
- note
Definition PowerpackV2Widget Group Definition Widget Note Definition - The definition for a Note widget.
- point
Plot PowerpackDefinition V2Widget Group Definition Widget Point Plot Definition - The definition for a Point Plot widget.
- query
Table PowerpackDefinition V2Widget Group Definition Widget Query Table Definition - The definition for a Query Table widget.
- query
Value PowerpackDefinition V2Widget Group Definition Widget Query Value Definition - The definition for a Query Value widget.
- run
Workflow PowerpackDefinition V2Widget Group Definition Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey
Definition PowerpackV2Widget Group Definition Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot
Definition PowerpackV2Widget Group Definition Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service
Level PowerpackObjective Definition V2Widget Group Definition Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap
Definition PowerpackV2Widget Group Definition Widget Servicemap Definition - The definition for a Service Map widget.
- slo
List PowerpackDefinition V2Widget Group Definition Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- sunburst
Definition PowerpackV2Widget Group Definition Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries
Definition PowerpackV2Widget Group Definition Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist
Definition PowerpackV2Widget Group Definition Widget Toplist Definition - The definition for a Toplist widget.
- topology
Map PowerpackDefinition V2Widget Group Definition Widget Topology Map Definition - The definition for a Topology Map widget.
- trace
Service PowerpackDefinition V2Widget Group Definition Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap
Definition PowerpackV2Widget Group Definition Widget Treemap Definition - The definition for a Treemap widget.
- widget
Layout PowerpackV2Widget Group Definition Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard
Definition PowerpackV2Widget Group Definition Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert_
graph_ Powerpackdefinition V2Widget Group Definition Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert_
value_ Powerpackdefinition V2Widget Group Definition Widget Alert Value Definition - The definition for a Alert Value widget.
- bar_
chart_ Powerpackdefinition V2Widget Group Definition Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change_
definition PowerpackV2Widget Group Definition Widget Change Definition - The definition for a Change widget.
- check_
status_ Powerpackdefinition V2Widget Group Definition Widget Check Status Definition - The definition for a Check Status widget.
- distribution_
definition PowerpackV2Widget Group Definition Widget Distribution Definition - The definition for a Distribution widget.
- event_
stream_ Powerpackdefinition V2Widget Group Definition Widget Event Stream Definition - The definition for a Event Stream widget.
- event_
timeline_ Powerpackdefinition V2Widget Group Definition Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free_
text_ Powerpackdefinition V2Widget Group Definition Widget Free Text Definition - The definition for a Free Text widget.
- funnel_
definition PowerpackV2Widget Group Definition Widget Funnel Definition - The definition for a Funnel widget.
- geomap_
definition PowerpackV2Widget Group Definition Widget Geomap Definition - The definition for a Geomap widget.
- heatmap_
definition PowerpackV2Widget Group Definition Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap_
definition PowerpackV2Widget Group Definition Widget Hostmap Definition - The definition for a Hostmap widget.
- id int
- The ID of the widget.
- iframe_
definition PowerpackV2Widget Group Definition Widget Iframe Definition - The definition for an Iframe widget.
- image_
definition PowerpackV2Widget Group Definition Widget Image Definition - The definition for an Image widget
- list_
stream_ Powerpackdefinition V2Widget Group Definition Widget List Stream Definition - The definition for a List Stream widget.
- log_
stream_ Powerpackdefinition V2Widget Group Definition Widget Log Stream Definition - The definition for an Log Stream widget.
- manage_
status_ Powerpackdefinition V2Widget Group Definition Widget Manage Status Definition - The definition for an Manage Status widget.
- note_
definition PowerpackV2Widget Group Definition Widget Note Definition - The definition for a Note widget.
- point_
plot_ Powerpackdefinition V2Widget Group Definition Widget Point Plot Definition - The definition for a Point Plot widget.
- query_
table_ Powerpackdefinition V2Widget Group Definition Widget Query Table Definition - The definition for a Query Table widget.
- query_
value_ Powerpackdefinition V2Widget Group Definition Widget Query Value Definition - The definition for a Query Value widget.
- run_
workflow_ Powerpackdefinition V2Widget Group Definition Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey_
definition PowerpackV2Widget Group Definition Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot_
definition PowerpackV2Widget Group Definition Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service_
level_ Powerpackobjective_ definition V2Widget Group Definition Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap_
definition PowerpackV2Widget Group Definition Widget Servicemap Definition - The definition for a Service Map widget.
- slo_
list_ Powerpackdefinition V2Widget Group Definition Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- sunburst_
definition PowerpackV2Widget Group Definition Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries_
definition PowerpackV2Widget Group Definition Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist_
definition PowerpackV2Widget Group Definition Widget Toplist Definition - The definition for a Toplist widget.
- topology_
map_ Powerpackdefinition V2Widget Group Definition Widget Topology Map Definition - The definition for a Topology Map widget.
- trace_
service_ Powerpackdefinition V2Widget Group Definition Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap_
definition PowerpackV2Widget Group Definition Widget Treemap Definition - The definition for a Treemap widget.
- widget_
layout PowerpackV2Widget Group Definition Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard_
definition PowerpackV2Widget Group Definition Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert
Graph Property MapDefinition - The definition for a Alert Graph widget.
- alert
Value Property MapDefinition - The definition for a Alert Value widget.
- bar
Chart Property MapDefinition - The definition for a Bar Chart widget.
- change
Definition Property Map - The definition for a Change widget.
- check
Status Property MapDefinition - The definition for a Check Status widget.
- distribution
Definition Property Map - The definition for a Distribution widget.
- event
Stream Property MapDefinition - The definition for a Event Stream widget.
- event
Timeline Property MapDefinition - The definition for a Event Timeline widget.
- free
Text Property MapDefinition - The definition for a Free Text widget.
- funnel
Definition Property Map - The definition for a Funnel widget.
- geomap
Definition Property Map - The definition for a Geomap widget.
- heatmap
Definition Property Map - The definition for a Heatmap widget.
- hostmap
Definition Property Map - The definition for a Hostmap widget.
- id Number
- The ID of the widget.
- iframe
Definition Property Map - The definition for an Iframe widget.
- image
Definition Property Map - The definition for an Image widget
- list
Stream Property MapDefinition - The definition for a List Stream widget.
- log
Stream Property MapDefinition - The definition for an Log Stream widget.
- manage
Status Property MapDefinition - The definition for an Manage Status widget.
- note
Definition Property Map - The definition for a Note widget.
- point
Plot Property MapDefinition - The definition for a Point Plot widget.
- query
Table Property MapDefinition - The definition for a Query Table widget.
- query
Value Property MapDefinition - The definition for a Query Value widget.
- run
Workflow Property MapDefinition - The definition for a Run Workflow widget.
- sankey
Definition Property Map - The definition for a Sankey diagram widget.
- scatterplot
Definition Property Map - The definition for a Scatterplot widget.
- service
Level Property MapObjective Definition - The definition for a Service Level Objective widget.
- servicemap
Definition Property Map - The definition for a Service Map widget.
- slo
List Property MapDefinition - The definition for an SLO (Service Level Objective) List widget.
- sunburst
Definition Property Map - The definition for a Sunburst widget.
- timeseries
Definition Property Map - The definition for a Timeseries widget.
- toplist
Definition Property Map - The definition for a Toplist widget.
- topology
Map Property MapDefinition - The definition for a Topology Map widget.
- trace
Service Property MapDefinition - The definition for a Trace Service widget.
- treemap
Definition Property Map - The definition for a Treemap widget.
- widget
Layout Property Map - The layout of the widget on a 'free' dashboard.
- wildcard
Definition Property Map - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinition, PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionArgs
- 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 boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time - 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).
- 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 boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time - 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).
- 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_ boolcost_ data - 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).
- 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 BooleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time - 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).
- 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 booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time - 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).
- 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_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time - 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).
- 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 BooleanCost Data - 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 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Alert Graph Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinition, PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionArgs
- Alert
Id string - The ID of the monitor used by the widget.
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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 int
- 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
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time - 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.
- Alert
Id string - The ID of the monitor used by the widget.
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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 int
- 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
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time - 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.
- alert_
id string - The ID of the monitor used by the widget.
- description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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.
- alert
Id String - The ID of the monitor used by the widget.
- description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 Integer
- 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
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time - 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.
- alert
Id string - The ID of the monitor used by the widget.
- description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time - 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.
- alert_
id str - The ID of the monitor used by the widget.
- description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time - 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.
- alert
Id String - The ID of the monitor used by the widget.
- description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Alert Value Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinition, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionArgs
- Custom
Links List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- Style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- Time
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time - 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).
- Custom
Links []PowerpackV2Widget Group Definition Widget Bar Chart Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- Style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- Time
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time - 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).
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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).
- custom
Links List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time - 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).
- custom
Links PowerpackV2Widget Group Definition Widget Bar Chart Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time - 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).
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time - 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).
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestArgs
- Apm
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Conditional
Formats List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Conditional Format> - Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
- Formulas
List<Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula> - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Style - Define request for the widget's style.
- Apm
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Conditional
Formats []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Conditional Format - Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
- Formulas
[]Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm_
query object - The query to use for this widget. 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. 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.
- apm
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Conditional Format> - Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
- formulas
List<Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula> - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Conditional Format[] - Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
- formulas
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula[] - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm_
query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Conditional Format] - Conditional formats allow you to set the color of your widget content or background, depending on a rule applied to your data.
- formulas
Sequence[Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula] - A list of formulas to use in the widget.
- log_
query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats 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.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By Sort Query - 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 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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaArgs
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Bar Chart Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Bar Chart Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Bar Chart Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Bar Chart Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Bar Chart Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By Sort Query - 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 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.
- Order
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By> - The list of items to sort the widget by.
- Count int
- The number of items to limit the widget to.
- Order
Bies []PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By - 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.
- order
Bies List<PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By> - The list of items to sort the widget by.
- count number
- The number of items to limit the widget to.
- order
Bies PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By[] - The list of items to sort the widget by.
- count int
- The number of items to limit the widget to.
- order_
bies Sequence[PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By] - The list of items to sort the widget by.
- count Number
- The number of items to limit the widget to.
- order
Bies List<Property Map> - The list of items to sort the widget by.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderBy, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByArgs
- Formula
Sort PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- Group
Sort PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- Formula
Sort PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- Group
Sort PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula_
sort object - Sort by a formula value.
- group_
sort object - Sort by a group (tag) value.
- formula
Sort PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group
Sort PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula
Sort PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group
Sort PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula_
sort PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group_
sort PowerpackV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula
Sort Property Map - Sort by a formula value.
- group
Sort Property Map - Sort by a group (tag) value.
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByFormulaSort, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByFormulaSortArgs
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByGroupSort, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByGroupSortArgs
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyle, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyleArgs
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyle, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleArgs
- Display
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- Stacked
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- Flat
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- Stacked
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Style Display Stacked - 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
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Bar Chart Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinition, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionArgs
- Custom
Links List<PowerpackV2Widget Group Definition Widget Change Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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<Powerpack
V2Widget Group Definition Widget Change Definition Request> - 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,securityQueryorprocessQueryis required within the request block). - Time
Powerpack
V2Widget Group Definition Widget Change Definition Time - 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).
- Custom
Links []PowerpackV2Widget Group Definition Widget Change Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
[]Powerpack
V2Widget Group Definition Widget Change Definition Request - 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,securityQueryorprocessQueryis required within the request block). - Time
Powerpack
V2Widget Group Definition Widget Change Definition Time - 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).
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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,securityQueryorprocessQueryis 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).
- custom
Links List<PowerpackV2Widget Group Definition Widget Change Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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<Powerpack
V2Widget Group Definition Widget Change Definition Request> - 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,securityQueryorprocessQueryis required within the request block). - time
Powerpack
V2Widget Group Definition Widget Change Definition Time - 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).
- custom
Links PowerpackV2Widget Group Definition Widget Change Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request[] - 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,securityQueryorprocessQueryis required within the request block). - time
Powerpack
V2Widget Group Definition Widget Change Definition Time - 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).
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Change Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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[Powerpack
V2Widget Group Definition Widget Change Definition Request] - 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,securityQueryorprocessQueryis required within the request block). - time
Powerpack
V2Widget Group Definition Widget Change Definition Time - 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).
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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<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,securityQueryorprocessQueryis 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestArgs
- Apm
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query - The query to use for this widget. 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<Powerpack
V2Widget Group Definition Widget Change Definition Request Formula> - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Log Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Change Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Change Definition Request Query> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Show
Present bool - If set to
true, displays the current value.
- Apm
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query - The query to use for this widget. 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
[]Powerpack
V2Widget Group Definition Widget Change Definition Request Formula - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Log Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Change Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Change Definition Request Query - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Show
Present 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.
- 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. Deprecated. Use queries and formulas instead.
- show_
present bool - If set to
true, displays the current value.
- apm
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query - The query to use for this widget. 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<Powerpack
V2Widget Group Definition Widget Change Definition Request Formula> - A list of formulas to use in the widget.
- increase
Good Boolean - A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
- log
Query PowerpackV2Widget Group Definition Widget Change Definition Request Log Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Change Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Change Definition Request Query> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- show
Present Boolean - If set to
true, displays the current value.
- apm
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query - The query to use for this widget. 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula[] - A list of formulas to use in the widget.
- increase
Good boolean - A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
- log
Query PowerpackV2Widget Group Definition Widget Change Definition Request Log Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Change Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Change Definition Request Query[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- show
Present boolean - If set to
true, displays the current value.
- apm_
query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query - The query to use for this widget. 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[Powerpack
V2Widget Group Definition Widget Change Definition Request Formula] - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Log Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Change Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Change Definition Request Query] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- show_
present bool - If set to
true, displays the current value.
- apm
Query Property Map - The query to use for this widget. 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<Property Map>
- A list of formulas to use in the widget.
- increase
Good Boolean - A Boolean indicating whether an increase in the value is good (displayed in green) or not (displayed in red).
- log
Query Property Map - The query to use for this widget. 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 Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- show
Present 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. - Compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Apm Query Group By Sort Query - 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 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
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Change Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Change Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Change Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Change Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Change Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Change Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Change Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Change Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Change Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Change Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Change Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Change Definition Request Security Query Group By Sort Query - 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 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
Powerpack
V2Widget Group Definition Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Change Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLiveArgs
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.
- Group
Bies List<string> - When
grouping = "cluster", indicates a list of tags to use for grouping. - Hide
Incomplete boolCost Data - 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. - List<string>
- A list of tags used to filter the groups reporting a cluster check.
- Time
Powerpack
V2Widget Group Definition Widget Check Status Definition Time - 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.
- Group
Bies []string - When
grouping = "cluster", indicates a list of tags to use for grouping. - Hide
Incomplete boolCost Data - 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. - []string
- A list of tags used to filter the groups reporting a cluster check.
- Time
Powerpack
V2Widget Group Definition Widget Check Status Definition Time - 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.
- group_
bies list(string) - When
grouping = "cluster", indicates a list of tags to use for grouping. - hide_
incomplete_ boolcost_ data - 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. - 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.
- group
Bies List<String> - When
grouping = "cluster", indicates a list of tags to use for grouping. - hide
Incomplete BooleanCost Data - 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. - List<String>
- A list of tags used to filter the groups reporting a cluster check.
- time
Powerpack
V2Widget Group Definition Widget Check Status Definition Time - 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.
- group
Bies string[] - When
grouping = "cluster", indicates a list of tags to use for grouping. - hide
Incomplete booleanCost Data - 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. - string[]
- A list of tags used to filter the groups reporting a cluster check.
- time
Powerpack
V2Widget Group Definition Widget Check Status Definition Time - 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 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_ boolcost_ data - 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. - Sequence[str]
- A list of tags used to filter the groups reporting a cluster check.
- time
Powerpack
V2Widget Group Definition Widget Check Status Definition Time - 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.
- group
Bies List<String> - When
grouping = "cluster", indicates a list of tags to use for grouping. - hide
Incomplete BooleanCost Data - 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. - 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Check Status Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinition, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionArgs
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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<Powerpack
V2Widget Group Definition Widget Distribution Definition Marker> - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - Requests
List<Powerpack
V2Widget Group Definition Widget Distribution Definition Request> - 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,securityQueryorprocessQueryis required within the request block). - Show
Legend bool - Whether or not to show the legend on this widget.
- Time
Powerpack
V2Widget Group Definition Widget Distribution Definition Time - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- Yaxis
Powerpack
V2Widget Group Definition Widget Distribution Definition Yaxis - 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 boolCost Data - 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
[]Powerpack
V2Widget Group Definition Widget Distribution Definition Marker - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - Requests
[]Powerpack
V2Widget Group Definition Widget Distribution Definition Request - 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,securityQueryorprocessQueryis required within the request block). - Show
Legend bool - Whether or not to show the legend on this widget.
- Time
Powerpack
V2Widget Group Definition Widget Distribution Definition Time - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- Yaxis
Powerpack
V2Widget Group Definition Widget Distribution Definition Yaxis - 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_ boolcost_ data - 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
markerblocks are allowed within a givendistributionDefinitionblock. - 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,securityQueryorprocessQueryis 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.
- hide
Incomplete BooleanCost Data - 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<Powerpack
V2Widget Group Definition Widget Distribution Definition Marker> - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - requests
List<Powerpack
V2Widget Group Definition Widget Distribution Definition Request> - 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,securityQueryorprocessQueryis required within the request block). - show
Legend Boolean - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Group Definition Widget Distribution Definition Time - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Group Definition Widget Distribution Definition Yaxis - 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 booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Marker[] - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - requests
Powerpack
V2Widget Group Definition Widget Distribution Definition Request[] - 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,securityQueryorprocessQueryis required within the request block). - show
Legend boolean - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Group Definition Widget Distribution Definition Time - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Group Definition Widget Distribution Definition Yaxis - 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_ boolcost_ data - 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[Powerpack
V2Widget Group Definition Widget Distribution Definition Marker] - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - requests
Sequence[Powerpack
V2Widget Group Definition Widget Distribution Definition Request] - 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,securityQueryorprocessQueryis required within the request block). - show_
legend bool - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Group Definition Widget Distribution Definition Time - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Group Definition Widget Distribution Definition Yaxis - 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 BooleanCost Data - 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<Property Map>
- A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givendistributionDefinitionblock. - 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,securityQueryorprocessQueryis required within the request block). - show
Legend 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.
- 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 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - Display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - Display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display_
type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type String - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display_
type str - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type String - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. Example:error dashed. - label String
- Label to display over the marker.
- time String
- Timestamp for the marker position.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestArgs
- Apm
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats PowerpackQuery V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- Formulas
List<Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula> - A list of formulas to use in the widget.
- Histogram
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- Log
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query> - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- Apm
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats PowerpackQuery V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- Formulas
[]Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula - A list of formulas to use in the widget.
- Histogram
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- Log
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Style - 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.
- apm_
stats_ objectquery - 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style object
- The style of the widget graph. One nested block is allowed using the structure below.
- apm
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats PowerpackQuery V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
List<Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula> - A list of formulas to use in the widget.
- histogram
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query> - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats PowerpackQuery V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula[] - A list of formulas to use in the widget.
- histogram
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query[] - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
stats_ Powerpackquery V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
Sequence[Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula] - A list of formulas to use in the widget.
- histogram_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query] - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats Property MapQuery - The APM stats query to use in the widget.
- formulas List<Property Map>
- A list of formulas to use in the widget.
- histogram
Query Property Map - Singular query block for histogram-mode distribution requests.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- 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 Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By Sort Query - 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 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.
- 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<Powerpack
V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query Column> - 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
[]Powerpack
V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query Column - 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.
- 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<Powerpack
V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query Column> - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query Column[] - 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[Powerpack
V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query Column] - 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.
- 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<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.
- Cell
Display stringMode - 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 stringMode - 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_ stringmode - 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 StringMode - 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 stringMode - 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_ strmode - 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.
- cell
Display StringMode - 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
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index Number - Index specifying which color to use within the palette.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryArgs
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- Event
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- Metric
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- Event
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- Metric
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm_
resource_ objectstats_ query - 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.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm
Resource Property MapStats Query - APM resource stats query for histogram-mode distribution.
- event
Query Property Map - Event query for histogram-mode distribution.
- metric
Query Property Map - Metric query for histogram-mode distribution.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Distribution Definition Request Security Query Group By Sort Query - 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 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
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Distribution Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxis, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxisArgs
- 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 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 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.
- include
Zero 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.
- num
Buckets 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.
- include
Zero 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.
- 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.
- 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.
- include
Zero 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxis, PowerpackV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxisArgs
- 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
linearorlog.
- 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
linearorlog.
- 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
linearorlog.
- include
Zero 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
linearorlog.
- include
Zero 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
linearorlog.
- 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
linearorlog.
- include
Zero 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
linearorlog.
PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinition, PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionArgs
- 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 boolCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - Time
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time - 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.
- Event
Size string - Size to use to display an event. Valid values are
s,l. - Hide
Incomplete boolCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - Time
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time - 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.
- event_
size string - Size to use to display an event. Valid values are
s,l. - hide_
incomplete_ boolcost_ data - 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. - string
- The execution method for multi-value filters, options:
andoror. - 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.
- event
Size String - Size to use to display an event. Valid values are
s,l. - hide
Incomplete BooleanCost Data - 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. - String
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time - 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.
- event
Size string - Size to use to display an event. Valid values are
s,l. - hide
Incomplete booleanCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time - 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 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_ boolcost_ data - 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. - str
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time - 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.
- event
Size String - Size to use to display an event. Valid values are
s,l. - hide
Incomplete BooleanCost Data - 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. - String
- The execution method for multi-value filters, options:
andoror. - 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Event Stream Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinition, PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionArgs
- Query string
- Query to filter the event timeline with.
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - Time
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time - 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.
- Hide
Incomplete boolCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - Time
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time - 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.
- hide_
incomplete_ boolcost_ data - 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. - string
- The execution method for multi-value filters, options:
andoror. - 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.
- hide
Incomplete BooleanCost Data - 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. - String
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time - 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.
- hide
Incomplete booleanCost Data - 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. - string
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time - 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 str
- Query to filter the event timeline with.
- description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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. - str
- The execution method for multi-value filters, options:
andoror. - time
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time - 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.
- hide
Incomplete BooleanCost Data - 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. - String
- The execution method for multi-value filters, options:
andoror. - 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Event Timeline Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinition, PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionArgs
- 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 boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Free Text Definition Time - 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.
- 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 boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Free Text Definition Time - 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.
- 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_ boolcost_ data - 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.
- 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 BooleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Free Text Definition Time - 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.
- 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 booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Free Text Definition Time - 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 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_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Widget Free Text Definition Time - 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.
- 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 BooleanCost Data - 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 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Free Text Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinition, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionArgs
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - Time
Powerpack
V2Widget Group Definition Widget Funnel Definition Time - 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.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - Time
Powerpack
V2Widget Group Definition Widget Funnel Definition Time - 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.
- hide_
incomplete_ boolcost_ data - 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
requestblock 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.
- hide
Incomplete BooleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - time
Powerpack
V2Widget Group Definition Widget Funnel Definition Time - 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.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - time
Powerpack
V2Widget Group Definition Widget Funnel Definition Time - 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 str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - time
Powerpack
V2Widget Group Definition Widget Funnel Definition Time - 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.
- hide
Incomplete BooleanCost Data - 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 Property Map
- A nested block describing the request to use when displaying the widget. Only one
requestblock 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestArgs
- Query
Powerpack
V2Widget Group Definition Widget Funnel Definition Request Query - The query for the funnel widget request.
- Query
Powerpack
V2Widget Group Definition Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Powerpack
V2Widget Group Definition Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Powerpack
V2Widget Group Definition Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Powerpack
V2Widget Group Definition Widget Funnel Definition Request Query - The query for the funnel widget request.
- query Property Map
- The query for the funnel widget request.
PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryArgs
- Data
Source string - The data source for funnel queries. Valid values are
rum. - Query
String string - The widget query.
- Steps
List<Powerpack
V2Widget Group Definition Widget Funnel Definition Request Query Step> - The funnel steps. Multiple
stepblocks are allowed.
- Data
Source string - The data source for funnel queries. Valid values are
rum. - Query
String string - The widget query.
- Steps
[]Powerpack
V2Widget Group Definition Widget Funnel Definition Request Query Step - The funnel steps. Multiple
stepblocks 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
stepblocks are allowed.
- data
Source String - The data source for funnel queries. Valid values are
rum. - query
String String - The widget query.
- steps
List<Powerpack
V2Widget Group Definition Widget Funnel Definition Request Query Step> - The funnel steps. Multiple
stepblocks are allowed.
- data
Source string - The data source for funnel queries. Valid values are
rum. - query
String string - The widget query.
- steps
Powerpack
V2Widget Group Definition Widget Funnel Definition Request Query Step[] - The funnel steps. Multiple
stepblocks are allowed.
- data_
source str - The data source for funnel queries. Valid values are
rum. - query_
string str - The widget query.
- steps
Sequence[Powerpack
V2Widget Group Definition Widget Funnel Definition Request Query Step] - The funnel steps. Multiple
stepblocks are allowed.
- data
Source String - The data source for funnel queries. Valid values are
rum. - query
String String - The widget query.
- steps List<Property Map>
- The funnel steps. Multiple
stepblocks are allowed.
PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStep, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStepArgs
PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Funnel Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinition, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionArgs
- Custom
Links List<PowerpackV2Widget Group Definition Widget Geomap Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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<Powerpack
V2Widget Group Definition Widget Geomap Definition Request> - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - Style
Powerpack
V2Widget Group Definition Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Powerpack
V2Widget Group Definition Widget Geomap Definition Time - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition View - The view of the world that the map should render.
- Custom
Links []PowerpackV2Widget Group Definition Widget Geomap Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
[]Powerpack
V2Widget Group Definition Widget Geomap Definition Request - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - Style
Powerpack
V2Widget Group Definition Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Powerpack
V2Widget Group Definition Widget Geomap Definition Time - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition View - The view of the world that the map should render.
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - 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.
- custom
Links List<PowerpackV2Widget Group Definition Widget Geomap Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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<Powerpack
V2Widget Group Definition Widget Geomap Definition Request> - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - style
Powerpack
V2Widget Group Definition Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Powerpack
V2Widget Group Definition Widget Geomap Definition Time - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition View - The view of the world that the map should render.
- custom
Links PowerpackV2Widget Group Definition Widget Geomap Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request[] - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - style
Powerpack
V2Widget Group Definition Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Powerpack
V2Widget Group Definition Widget Geomap Definition Time - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition View - The view of the world that the map should render.
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Geomap Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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[Powerpack
V2Widget Group Definition Widget Geomap Definition Request] - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - style
Powerpack
V2Widget Group Definition Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Powerpack
V2Widget Group Definition Widget Geomap Definition Time - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition View - The view of the world that the map should render.
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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<Property Map>
- A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - 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.
- 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 Property Map
- The view of the world that the map should render.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestArgs
- Formulas
List<Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula> - List of formulas that operate on queries.
- Log
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query> - List of queries that can be returned directly or used in formulas.
- Rum
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula - List of formulas that operate on queries.
- Log
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query - List of queries that can be returned directly or used in formulas.
- Rum
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query - The query to use for this widget. 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.
- q string
- The metric query to use for this widget. 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.
- formulas
List<Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula> - List of formulas that operate on queries.
- log
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query> - List of queries that can be returned directly or used in formulas.
- rum
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula[] - List of formulas that operate on queries.
- log
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query[] - List of queries that can be returned directly or used in formulas.
- rum
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula] - List of formulas that operate on queries.
- log_
query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query] - List of queries that can be returned directly or used in formulas.
- rum_
query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas List<Property Map>
- List of formulas that operate on queries.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- List of queries that can be returned directly or used in formulas.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaArgs
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Geomap Definition Request Log Query Group By Sort Query - 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 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
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By Sort Query - 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 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.
- Palette
Flip 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.
- palette_
flip bool - A Boolean indicating whether to flip the palette tones.
- palette String
- The color palette to apply to the widget.
- palette
Flip Boolean - A Boolean indicating whether to flip the palette tones.
- palette string
- The color palette to apply to the widget.
- palette
Flip 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.
- palette
Flip Boolean - A Boolean indicating whether to flip the palette tones.
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Geomap Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionView, PowerpackV2WidgetGroupDefinitionWidgetGeomapDefinitionViewArgs
- Focus string
- The 2-letter ISO code of a country to focus the map on, or
WORLDfor 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
WORLDfor 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
WORLDfor 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
WORLDfor 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
WORLDfor 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
WORLDfor 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
WORLDfor global view, or a region (EMEA,APAC,LATAM), or a continent (NORTH_AMERICA,SOUTH_AMERICA,EUROPE,AFRICA,ASIA,OCEANIA).
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinition, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionArgs
- Custom
Links List<PowerpackV2Widget Group Definition Widget Heatmap Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Events
List<Powerpack
V2Widget Group Definition Widget Heatmap Definition Event> - The definition of the event to overlay on the graph. Multiple
eventblocks are allowed using the structure below. - Hide
Incomplete boolCost Data - 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<Powerpack
V2Widget Group Definition Widget Heatmap Definition Marker> - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givenheatmapDefinitionblock. - Requests
List<Powerpack
V2Widget Group Definition Widget Heatmap Definition Request> - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - Show
Legend bool - Whether or not to show the legend on this widget.
- Time
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- Yaxis
Powerpack
V2Widget Group Definition Widget Heatmap Definition Yaxis - A nested block describing the Y-Axis Controls. The structure of this block is described below.
- Custom
Links []PowerpackV2Widget Group Definition Widget Heatmap Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Events
[]Powerpack
V2Widget Group Definition Widget Heatmap Definition Event - The definition of the event to overlay on the graph. Multiple
eventblocks are allowed using the structure below. - Hide
Incomplete boolCost Data - 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
[]Powerpack
V2Widget Group Definition Widget Heatmap Definition Marker - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givenheatmapDefinitionblock. - Requests
[]Powerpack
V2Widget Group Definition Widget Heatmap Definition Request - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - Show
Legend bool - Whether or not to show the legend on this widget.
- Time
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- Yaxis
Powerpack
V2Widget Group Definition Widget Heatmap Definition Yaxis - 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
customLinkblocks 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
eventblocks are allowed using the structure below. - hide_
incomplete_ boolcost_ data - 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
markerblocks are allowed within a givenheatmapDefinitionblock. - requests list(object)
- A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis 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.
- custom
Links List<PowerpackV2Widget Group Definition Widget Heatmap Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- events
List<Powerpack
V2Widget Group Definition Widget Heatmap Definition Event> - The definition of the event to overlay on the graph. Multiple
eventblocks are allowed using the structure below. - hide
Incomplete BooleanCost Data - 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<Powerpack
V2Widget Group Definition Widget Heatmap Definition Marker> - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givenheatmapDefinitionblock. - requests
List<Powerpack
V2Widget Group Definition Widget Heatmap Definition Request> - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - show
Legend Boolean - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Group Definition Widget Heatmap Definition Yaxis - A nested block describing the Y-Axis Controls. The structure of this block is described below.
- custom
Links PowerpackV2Widget Group Definition Widget Heatmap Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- events
Powerpack
V2Widget Group Definition Widget Heatmap Definition Event[] - The definition of the event to overlay on the graph. Multiple
eventblocks are allowed using the structure below. - hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Marker[] - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givenheatmapDefinitionblock. - requests
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request[] - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - show
Legend boolean - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Group Definition Widget Heatmap Definition Yaxis - A nested block describing the Y-Axis Controls. The structure of this block is described below.
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- events
Sequence[Powerpack
V2Widget Group Definition Widget Heatmap Definition Event] - The definition of the event to overlay on the graph. Multiple
eventblocks are allowed using the structure below. - hide_
incomplete_ boolcost_ data - 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[Powerpack
V2Widget Group Definition Widget Heatmap Definition Marker] - A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givenheatmapDefinitionblock. - requests
Sequence[Powerpack
V2Widget Group Definition Widget Heatmap Definition Request] - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - show_
legend bool - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Group Definition Widget Heatmap Definition Yaxis - A nested block describing the Y-Axis Controls. The structure of this block is described below.
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks 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
eventblocks are allowed using the structure below. - hide
Incomplete BooleanCost Data - 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<Property Map>
- A nested block describing the marker to use when displaying the widget. The structure of this block is described below. Multiple
markerblocks are allowed within a givenheatmapDefinitionblock. - requests List<Property Map>
- A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - show
Legend 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.
- 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 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.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionEvent, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionEventArgs
- Q string
- The event query to use in the widget.
- string
- The execution method for multi-value filters.
- Q string
- The event query to use in the widget.
- string
- The execution method for multi-value filters.
- q string
- The event query to use in the widget.
- string
- The execution method for multi-value filters.
- q String
- The event query to use in the widget.
- String
- The execution method for multi-value filters.
- q string
- The event query to use in the widget.
- string
- The execution method for multi-value filters.
- q str
- The event query to use in the widget.
- str
- The execution method for multi-value filters.
- q String
- The event query to use in the widget.
- String
- The execution method for multi-value filters.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarker, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarkerArgs
- Value string
- Value to apply. Can be a single value
y = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - Display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - Display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display_
type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type String - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display_
type str - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type String - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. Example:error dashed. - label String
- Label to display over the marker.
- time String
- Timestamp for the marker position.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestArgs
- Apm
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula> - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- Apm
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Style - 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.
- 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style object
- The style of the widget graph. One nested block is allowed using the structure below.
- apm
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula> - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula[] - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm_
query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula] - A list of formulas to use in the widget.
- log_
query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas List<Property Map>
- A list of formulas to use in the widget.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By Sort Query - 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 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
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Heatmap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Heatmap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Heatmap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Heatmap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Heatmap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Heatmap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Heatmap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Heatmap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Heatmap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Heatmap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By Sort Query - 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 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
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Heatmap Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxis, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxisArgs
- 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).
- 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).
- 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).
- num
Buckets 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).
- 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).
- 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).
- 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).
PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxis, PowerpackV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxisArgs
- Include
Zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- Include
Zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include_
zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero Boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include_
zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero Boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinition, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionArgs
- Custom
Links List<PowerpackV2Widget Group Definition Widget Hostmap Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks 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 boolCost Data - 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 boolHosts - A Boolean indicating whether to show the hosts that don't fit in a group.
- No
Metric boolHosts - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below. - Scopes List<string>
- The list of tags used to filter the map.
- Style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time - 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).
- Custom
Links []PowerpackV2Widget Group Definition Widget Hostmap Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Groups []string
- The list of tag prefixes to group by.
- Hide
Incomplete boolCost Data - 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 boolHosts - A Boolean indicating whether to show the hosts that don't fit in a group.
- No
Metric boolHosts - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below. - Scopes []string
- The list of tags used to filter the map.
- Style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time - 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).
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks 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_ boolcost_ data - 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_ boolhosts - A Boolean indicating whether to show the hosts that don't fit in a group.
- no_
metric_ boolhosts - 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
requestblocks 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).
- custom
Links List<PowerpackV2Widget Group Definition Widget Hostmap Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks 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 BooleanCost Data - 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 BooleanHosts - A Boolean indicating whether to show the hosts that don't fit in a group.
- no
Metric BooleanHosts - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below. - scopes List<String>
- The list of tags used to filter the map.
- style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time - 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).
- custom
Links PowerpackV2Widget Group Definition Widget Hostmap Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- groups string[]
- The list of tag prefixes to group by.
- hide
Incomplete booleanCost Data - 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 booleanHosts - A Boolean indicating whether to show the hosts that don't fit in a group.
- no
Metric booleanHosts - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below. - scopes string[]
- The list of tags used to filter the map.
- style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time - 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).
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks 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_ boolcost_ data - 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_ boolhosts - A Boolean indicating whether to show the hosts that don't fit in a group.
- no_
metric_ boolhosts - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below. - scopes Sequence[str]
- The list of tags used to filter the map.
- style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time - 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).
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks 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 BooleanCost Data - 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 BooleanHosts - A Boolean indicating whether to show the hosts that don't fit in a group.
- no
Metric BooleanHosts - 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 Property Map
- A nested block describing the request to use when displaying the widget. Multiple
requestblocks 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestArgs
- Fill
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill - The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of
q,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - Size
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size - The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of
q,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block).
- Fill
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill - The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of
q,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - Size
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size - The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of
q,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis 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,securityQueryorprocessQueryis 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,securityQueryorprocessQueryis required within the request block).
- fill
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill - The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of
q,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - size
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size - The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of
q,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block).
- fill
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill - The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of
q,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - size
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size - The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of
q,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block).
- fill
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill - The query used to fill the map. Exactly one nested block is allowed using the structure below (exactly one of
q,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within the request block). - size
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size - The query used to size the map. Exactly one nested block is allowed using the structure below (exactly one of
q,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis 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,securityQueryorprocessQueryis 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,securityQueryorprocessQueryis required within the request block).
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFill, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillArgs
- Apm
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula> - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
query object - The query to use for this widget. 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula> - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula[] - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula] - A list of formulas to use in the widget.
- log_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas List<Property Map>
- A list of formulas to use in the widget.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By Sort Query - 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 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
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Fill Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Fill Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Hostmap Definition Request Fill Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Fill Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Fill Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Hostmap Definition Request Fill Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Fill Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Fill Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Hostmap Definition Request Fill Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Fill Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Fill Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Hostmap Definition Request Fill Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Hostmap Definition Request Fill Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Hostmap Definition Request Fill Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Hostmap Definition Request Fill Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By Sort Query - 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 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
- Apm
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula> - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
query object - The query to use for this widget. 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula> - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula[] - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula] - A list of formulas to use in the widget.
- log_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas List<Property Map>
- A list of formulas to use in the widget.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By Sort Query - 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 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
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Hostmap Definition Request Size Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Hostmap Definition Request Size Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Hostmap Definition Request Size Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Hostmap Definition Request Size Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Hostmap Definition Request Size Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Size Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Size Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Hostmap Definition Request Size Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Size Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Size Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Hostmap Definition Request Size Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Size Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Size Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Hostmap Definition Request Size Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Size Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Hostmap Definition Request Size Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Hostmap Definition Request Size Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Hostmap Definition Request Size Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Hostmap Definition Request Size Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Hostmap Definition Request Size Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By Sort Query - 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 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
- 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.
- 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.
- 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.
- 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 Boolean - 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 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.
- 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 Boolean - A Boolean indicating whether to flip the palette tones.
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Hostmap Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetIframeDefinition, PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionArgs
- Url string
- The URL to use as a data source for the widget.
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Iframe Definition Time - 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.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Iframe Definition Time - 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.
- hide_
incomplete_ boolcost_ data - 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.
- hide
Incomplete BooleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Iframe Definition Time - 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.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Iframe Definition Time - 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 str
- The URL to use as a data source for the widget.
- description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Widget Iframe Definition Time - 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.
- hide
Incomplete BooleanCost Data - 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 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Iframe Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Iframe Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Iframe Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Iframe Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Iframe Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Iframe Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Iframe Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Iframe Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Iframe Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Iframe Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetImageDefinition, PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionArgs
- 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 boolCost Data - 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:
smallandlargevalues are deprecated. Valid values aresm,md,lg,small,large. - Sizing string
- The preferred method to adapt the dimensions of the image. The values are based on the image
object-fitCSS properties. Note:zoom,fitandcentervalues are deprecated. Valid values arefill,contain,cover,none,scale-down,zoom,fit,center. - Time
Powerpack
V2Widget Group Definition Widget Image Definition Time - 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 stringTheme - 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.
- 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 boolCost Data - 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:
smallandlargevalues are deprecated. Valid values aresm,md,lg,small,large. - Sizing string
- The preferred method to adapt the dimensions of the image. The values are based on the image
object-fitCSS properties. Note:zoom,fitandcentervalues are deprecated. Valid values arefill,contain,cover,none,scale-down,zoom,fit,center. - Time
Powerpack
V2Widget Group Definition Widget Image Definition Time - 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 stringTheme - 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.
- 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_ boolcost_ data - 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:
smallandlargevalues are deprecated. Valid values aresm,md,lg,small,large. - sizing string
- The preferred method to adapt the dimensions of the image. The values are based on the image
object-fitCSS properties. Note:zoom,fitandcentervalues are deprecated. Valid values arefill,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_ stringtheme - 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.
- has
Background Boolean - Whether to display a background or not. Defaults to
true. - has
Border Boolean - Whether to display a border or not. Defaults to
true. - hide
Incomplete BooleanCost Data - 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:
smallandlargevalues are deprecated. Valid values aresm,md,lg,small,large. - sizing String
- The preferred method to adapt the dimensions of the image. The values are based on the image
object-fitCSS properties. Note:zoom,fitandcentervalues are deprecated. Valid values arefill,contain,cover,none,scale-down,zoom,fit,center. - time
Powerpack
V2Widget Group Definition Widget Image Definition Time - 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 StringTheme - 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.
- has
Background boolean - Whether to display a background or not. Defaults to
true. - has
Border boolean - Whether to display a border or not. Defaults to
true. - hide
Incomplete booleanCost Data - 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:
smallandlargevalues are deprecated. Valid values aresm,md,lg,small,large. - sizing string
- The preferred method to adapt the dimensions of the image. The values are based on the image
object-fitCSS properties. Note:zoom,fitandcentervalues are deprecated. Valid values arefill,contain,cover,none,scale-down,zoom,fit,center. - time
Powerpack
V2Widget Group Definition Widget Image Definition Time - 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 stringTheme - URL of the image in dark mode.
- vertical
Align 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_ boolcost_ data - 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:
smallandlargevalues are deprecated. Valid values aresm,md,lg,small,large. - sizing str
- The preferred method to adapt the dimensions of the image. The values are based on the image
object-fitCSS properties. Note:zoom,fitandcentervalues are deprecated. Valid values arefill,contain,cover,none,scale-down,zoom,fit,center. - time
Powerpack
V2Widget Group Definition Widget Image Definition Time - 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_ strtheme - 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.
- has
Background Boolean - Whether to display a background or not. Defaults to
true. - has
Border Boolean - Whether to display a border or not. Defaults to
true. - hide
Incomplete BooleanCost Data - 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:
smallandlargevalues are deprecated. Valid values aresm,md,lg,small,large. - sizing String
- The preferred method to adapt the dimensions of the image. The values are based on the image
object-fitCSS properties. Note:zoom,fitandcentervalues are deprecated. Valid values arefill,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.
- 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 StringTheme - URL of the image in dark mode.
- vertical
Align String - The vertical alignment for the widget. Valid values are
center,top,bottom.
PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Image Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Image Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Image Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Image Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Image Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Image Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Image Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Image Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Image Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Image Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetImageDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinition, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionArgs
- Requests
List<Powerpack
V2Widget Group Definition Widget List Stream Definition Request> - Nested block describing the requests to use when displaying the widget. Multiple
requestblocks are allowed with the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget List Stream Definition Time - 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
[]Powerpack
V2Widget Group Definition Widget List Stream Definition Request - Nested block describing the requests to use when displaying the widget. Multiple
requestblocks are allowed with the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget List Stream Definition Time - 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(object)
- Nested block describing the requests to use when displaying the widget. Multiple
requestblocks are allowed with the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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<Powerpack
V2Widget Group Definition Widget List Stream Definition Request> - Nested block describing the requests to use when displaying the widget. Multiple
requestblocks are allowed with the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 Boolean - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Group Definition Widget List Stream Definition Time - 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
Powerpack
V2Widget Group Definition Widget List Stream Definition Request[] - Nested block describing the requests to use when displaying the widget. Multiple
requestblocks are allowed with the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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 boolean - Whether or not to show the legend on this widget.
- time
Powerpack
V2Widget Group Definition Widget List Stream Definition Time - 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
Sequence[Powerpack
V2Widget Group Definition Widget List Stream Definition Request] - Nested block describing the requests to use when displaying the widget. Multiple
requestblocks are allowed with the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Widget List Stream Definition Time - 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
requestblocks are allowed with the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestArgs
- Columns
List<Powerpack
V2Widget Group Definition Widget List Stream Definition Request Column> - Widget columns.
- Query
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Query - Updated list stream widget.
- Response
Format string - Widget response format. Valid values are
eventList.
- Columns
[]Powerpack
V2Widget Group Definition Widget List Stream Definition Request Column - Widget columns.
- Query
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Query - Updated list stream widget.
- Response
Format string - Widget response format. Valid values are
eventList.
- columns list(object)
- Widget columns.
- query object
- Updated list stream widget.
- response_
format string - Widget response format. Valid values are
eventList.
- columns
List<Powerpack
V2Widget Group Definition Widget List Stream Definition Request Column> - Widget columns.
- query
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Query - Updated list stream widget.
- response
Format String - Widget response format. Valid values are
eventList.
- columns
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Column[] - Widget columns.
- query
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Query - Updated list stream widget.
- response
Format string - Widget response format. Valid values are
eventList.
- columns
Sequence[Powerpack
V2Widget Group Definition Widget List Stream Definition Request Column] - Widget columns.
- query
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Query - Updated list stream widget.
- response_
format str - Widget response format. Valid values are
eventList.
- columns List<Property Map>
- Widget columns.
- query Property Map
- Updated list stream widget.
- response
Format String - Widget response format. Valid values are
eventList.
PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestColumn, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestColumnArgs
PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryArgs
- 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 stringField Path - Specifies the field for logs pattern clustering. Can only be used with
logsPatternStream. - Event
Size string - Size of events displayed in widget. Required if
dataSourceiseventStream. Valid values ares,l. - Group
Bies List<PowerpackV2Widget Group Definition Widget List Stream Definition Request Query Group By> - Group by configuration for the List Stream widget. Group by can only be used with
logsPatternStream(up to 4 items) orlogsTransactionStream(one group by item is required) list stream source. - Indexes List<string>
- List of indexes.
- Query
String string - Widget query.
- Sort
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Query Sort - 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 stringField Path - Specifies the field for logs pattern clustering. Can only be used with
logsPatternStream. - Event
Size string - Size of events displayed in widget. Required if
dataSourceiseventStream. Valid values ares,l. - Group
Bies []PowerpackV2Widget Group Definition Widget List Stream Definition Request Query Group By - Group by configuration for the List Stream widget. Group by can only be used with
logsPatternStream(up to 4 items) orlogsTransactionStream(one group by item is required) list stream source. - Indexes []string
- List of indexes.
- Query
String string - Widget query.
- Sort
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Query Sort - 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_ stringfield_ path - Specifies the field for logs pattern clustering. Can only be used with
logsPatternStream. - event_
size string - Size of events displayed in widget. Required if
dataSourceiseventStream. Valid values ares,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) orlogsTransactionStream(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).
- 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 StringField Path - Specifies the field for logs pattern clustering. Can only be used with
logsPatternStream. - event
Size String - Size of events displayed in widget. Required if
dataSourceiseventStream. Valid values ares,l. - group
Bies List<PowerpackV2Widget Group Definition Widget List Stream Definition Request Query Group By> - Group by configuration for the List Stream widget. Group by can only be used with
logsPatternStream(up to 4 items) orlogsTransactionStream(one group by item is required) list stream source. - indexes List<String>
- List of indexes.
- query
String String - Widget query.
- sort
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Query Sort - 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 stringField Path - Specifies the field for logs pattern clustering. Can only be used with
logsPatternStream. - event
Size string - Size of events displayed in widget. Required if
dataSourceiseventStream. Valid values ares,l. - group
Bies PowerpackV2Widget Group Definition Widget List Stream Definition Request Query Group By[] - Group by configuration for the List Stream widget. Group by can only be used with
logsPatternStream(up to 4 items) orlogsTransactionStream(one group by item is required) list stream source. - indexes string[]
- List of indexes.
- query
String string - Widget query.
- sort
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Query Sort - 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_ strfield_ path - Specifies the field for logs pattern clustering. Can only be used with
logsPatternStream. - event_
size str - Size of events displayed in widget. Required if
dataSourceiseventStream. Valid values ares,l. - group_
bies Sequence[PowerpackV2Widget Group Definition Widget List Stream Definition Request Query Group By] - Group by configuration for the List Stream widget. Group by can only be used with
logsPatternStream(up to 4 items) orlogsTransactionStream(one group by item is required) list stream source. - indexes Sequence[str]
- List of indexes.
- query_
string str - Widget query.
- sort
Powerpack
V2Widget Group Definition Widget List Stream Definition Request Query Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - storage str
- 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 StringField Path - Specifies the field for logs pattern clustering. Can only be used with
logsPatternStream. - event
Size String - Size of events displayed in widget. Required if
dataSourceiseventStream. Valid values ares,l. - group
Bies List<Property Map> - Group by configuration for the List Stream widget. Group by can only be used with
logsPatternStream(up to 4 items) orlogsTransactionStream(one group by item is required) list stream source. - indexes List<String>
- List of indexes.
- query
String 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
PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget List Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget List Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget List Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget List Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget List Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget List Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget List Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget List Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget List Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget List Stream Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinition, PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionArgs
- Columns List<string>
- Stringified list of columns to use, for example:
["column1","column2","column3"]. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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 boolColumn - If the date column should be displayed.
- Show
Message boolColumn - If the message column should be displayed.
- Sort
Powerpack
V2Widget Group Definition Widget Log Stream Definition Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - Time
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time - 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 []string
- Stringified list of columns to use, for example:
["column1","column2","column3"]. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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.
- 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 boolColumn - If the date column should be displayed.
- Show
Message boolColumn - If the message column should be displayed.
- Sort
Powerpack
V2Widget Group Definition Widget Log Stream Definition Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - Time
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time - 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.
- hide_
incomplete_ boolcost_ data - 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_ boolcolumn - If the date column should be displayed.
- show_
message_ boolcolumn - 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.
- hide
Incomplete BooleanCost Data - 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 BooleanColumn - If the date column should be displayed.
- show
Message BooleanColumn - If the message column should be displayed.
- sort
Powerpack
V2Widget Group Definition Widget Log Stream Definition Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - time
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time - 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 string[]
- Stringified list of columns to use, for example:
["column1","column2","column3"]. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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.
- 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 booleanColumn - If the date column should be displayed.
- show
Message booleanColumn - If the message column should be displayed.
- sort
Powerpack
V2Widget Group Definition Widget Log Stream Definition Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - time
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time - 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 Sequence[str]
- Stringified list of columns to use, for example:
["column1","column2","column3"]. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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_ boolcolumn - If the date column should be displayed.
- show_
message_ boolcolumn - If the message column should be displayed.
- sort
Powerpack
V2Widget Group Definition Widget Log Stream Definition Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - time
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time - 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.
- hide
Incomplete BooleanCost Data - 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 BooleanColumn - If the date column should be displayed.
- show
Message BooleanColumn - 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionSort, PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionSortArgs
PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Log Stream Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinition, PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionArgs
- 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 boolCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- Hide
Zero boolCounts - 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 boolTriggered - 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
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time - 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.
- 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 boolCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- Hide
Zero boolCounts - 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 boolTriggered - 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
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time - 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.
- 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_ boolcost_ data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- hide_
zero_ boolcounts - 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_ booltriggered - 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.
- 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 BooleanCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- hide
Zero BooleanCounts - 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 BooleanTriggered - Whether to show the time that has elapsed since the monitor/group triggered.
- show
Priority 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. - summary
Type String - The summary type to use. Valid values are
monitors,groups,combined. - time
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time - 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.
- 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 booleanCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- hide
Zero booleanCounts - 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 booleanTriggered - Whether to show the time that has elapsed since the monitor/group triggered.
- show
Priority 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. - summary
Type string - The summary type to use. Valid values are
monitors,groups,combined. - time
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time - 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 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_ boolcost_ data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- hide_
zero_ boolcounts - 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_ booltriggered - 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
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time - 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.
- 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 BooleanCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- hide
Zero BooleanCounts - 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 BooleanTriggered - Whether to show the time that has elapsed since the monitor/group triggered.
- show
Priority 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. - summary
Type 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Manage Status Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetNoteDefinition, PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionArgs
- 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 boolCost Data - 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 arebottom,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
Powerpack
V2Widget Group Definition Widget Note Definition Time - 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.
- 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 boolCost Data - 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 arebottom,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
Powerpack
V2Widget Group Definition Widget Note Definition Time - 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.
- 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_ boolcost_ data - 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 arebottom,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.
- 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 Boolean - Whether to add padding or not. Defaults to
true. - hide
Incomplete BooleanCost Data - 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 Boolean - 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 arebottom,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
Powerpack
V2Widget Group Definition Widget Note Definition Time - 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.
- 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 boolean - Whether to add padding or not. Defaults to
true. - hide
Incomplete booleanCost Data - 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 boolean - 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 arebottom,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
Powerpack
V2Widget Group Definition Widget Note Definition Time - 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 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_ boolcost_ data - 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 arebottom,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
Powerpack
V2Widget Group Definition Widget Note Definition Time - 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.
- 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 Boolean - Whether to add padding or not. Defaults to
true. - hide
Incomplete BooleanCost Data - 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 Boolean - 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 arebottom,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 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Note Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Note Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Note Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Note Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Note Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Note Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Note Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Note Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Note Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Note Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinition, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionArgs
- Custom
Links List<PowerpackV2Widget Group Definition Widget Point Plot Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- Legend
Powerpack
V2Widget Group Definition Widget Point Plot Definition Legend - 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<Powerpack
V2Widget Group Definition Widget Point Plot Definition Marker> - A nested block describing a marker to use when displaying the widget. Multiple
markerblocks are allowed. - Requests
List<Powerpack
V2Widget Group Definition Widget Point Plot Definition Request> - A nested block describing the request to use when displaying the widget.
- Time
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time - 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
Powerpack
V2Widget Group Definition Widget Point Plot Definition Yaxis - A nested block describing the Y-Axis Controls. The structure of this block is described below.
- Custom
Links []PowerpackV2Widget Group Definition Widget Point Plot Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- Legend
Powerpack
V2Widget Group Definition Widget Point Plot Definition Legend - 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
[]Powerpack
V2Widget Group Definition Widget Point Plot Definition Marker - A nested block describing a marker to use when displaying the widget. Multiple
markerblocks are allowed. - Requests
[]Powerpack
V2Widget Group Definition Widget Point Plot Definition Request - A nested block describing the request to use when displaying the widget.
- Time
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time - 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
Powerpack
V2Widget Group Definition Widget Point Plot Definition Yaxis - 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
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
markerblocks 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.
- custom
Links List<PowerpackV2Widget Group Definition Widget Point Plot Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- legend
Powerpack
V2Widget Group Definition Widget Point Plot Definition Legend - 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<Powerpack
V2Widget Group Definition Widget Point Plot Definition Marker> - A nested block describing a marker to use when displaying the widget. Multiple
markerblocks are allowed. - requests
List<Powerpack
V2Widget Group Definition Widget Point Plot Definition Request> - A nested block describing the request to use when displaying the widget.
- time
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time - 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
Powerpack
V2Widget Group Definition Widget Point Plot Definition Yaxis - A nested block describing the Y-Axis Controls. The structure of this block is described below.
- custom
Links PowerpackV2Widget Group Definition Widget Point Plot Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- legend
Powerpack
V2Widget Group Definition Widget Point Plot Definition Legend - 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
Powerpack
V2Widget Group Definition Widget Point Plot Definition Marker[] - A nested block describing a marker to use when displaying the widget. Multiple
markerblocks are allowed. - requests
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request[] - A nested block describing the request to use when displaying the widget.
- time
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time - 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
Powerpack
V2Widget Group Definition Widget Point Plot Definition Yaxis - A nested block describing the Y-Axis Controls. The structure of this block is described below.
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Point Plot Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- legend
Powerpack
V2Widget Group Definition Widget Point Plot Definition Legend - 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[Powerpack
V2Widget Group Definition Widget Point Plot Definition Marker] - A nested block describing a marker to use when displaying the widget. Multiple
markerblocks are allowed. - requests
Sequence[Powerpack
V2Widget Group Definition Widget Point Plot Definition Request] - A nested block describing the request to use when displaying the widget.
- time
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time - 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
Powerpack
V2Widget Group Definition Widget Point Plot Definition Yaxis - A nested block describing the Y-Axis Controls. The structure of this block is described below.
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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.
- 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<Property Map>
- A nested block describing a marker to use when displaying the widget. Multiple
markerblocks 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.
- 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 Property Map
- A nested block describing the Y-Axis Controls. The structure of this block is described below.
PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - Display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - Display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display_
type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type String - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type string - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display_
type str - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. 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 = 15or a range of values0 < y < 10. For Distribution widgets withdisplayTypeset topercentile, this should be a numeric percentile value (for example,90for P90). - display
Type String - Combination of a severity (
error,warning,ok, orinfo) and a line type (dashed,solid, orbold). For Distribution widgets, this can be set topercentile. Example:error dashed. - label String
- Label to display over the marker.
- time String
- Timestamp for the marker position.
PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestArgs
- Projection
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Projection - Projection configuration for the point plot request.
- Query
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Query - Query configuration for the point plot request.
- Request
Type string - The type of data request. Must be
dataProjection. Valid values aredataProjection. - Limit int
- Maximum number of data points to return.
- Projection
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Projection - Projection configuration for the point plot request.
- Query
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Query - Query configuration for the point plot request.
- Request
Type string - The type of data request. Must be
dataProjection. Valid values aredataProjection. - 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 aredataProjection. - limit number
- Maximum number of data points to return.
- projection
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Projection - Projection configuration for the point plot request.
- query
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Query - Query configuration for the point plot request.
- request
Type String - The type of data request. Must be
dataProjection. Valid values aredataProjection. - limit Integer
- Maximum number of data points to return.
- projection
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Projection - Projection configuration for the point plot request.
- query
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Query - Query configuration for the point plot request.
- request
Type string - The type of data request. Must be
dataProjection. Valid values aredataProjection. - limit number
- Maximum number of data points to return.
- projection
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Projection - Projection configuration for the point plot request.
- query
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Query - Query configuration for the point plot request.
- request_
type str - The type of data request. Must be
dataProjection. Valid values aredataProjection. - 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.
- request
Type String - The type of data request. Must be
dataProjection. Valid values aredataProjection. - limit Number
- Maximum number of data points to return.
PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionArgs
- Dimensions
List<Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Projection Dimension> - List of dimension mappings for the projection.
- Type string
- Type of the projection. Must be
pointPlot. Valid values arepointPlot. - Extra
Columns List<string> - Additional columns to include in the projection.
- Dimensions
[]Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Projection Dimension - List of dimension mappings for the projection.
- Type string
- Type of the projection. Must be
pointPlot. Valid values arepointPlot. - Extra
Columns []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 arepointPlot. - extra_
columns list(string) - Additional columns to include in the projection.
- dimensions
List<Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Projection Dimension> - List of dimension mappings for the projection.
- type String
- Type of the projection. Must be
pointPlot. Valid values arepointPlot. - extra
Columns List<String> - Additional columns to include in the projection.
- dimensions
Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Projection Dimension[] - List of dimension mappings for the projection.
- type string
- Type of the projection. Must be
pointPlot. Valid values arepointPlot. - extra
Columns string[] - Additional columns to include in the projection.
- dimensions
Sequence[Powerpack
V2Widget Group Definition Widget Point Plot Definition Request Projection Dimension] - List of dimension mappings for the projection.
- type str
- Type of the projection. Must be
pointPlot. Valid values arepointPlot. - 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 arepointPlot. - extra
Columns List<String> - Additional columns to include in the projection.
PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimensionArgs
PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQueryArgs
- 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.
- Data
Source string - Data source for the query (for example,
logs). - Query
String 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.
- 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.
- data
Source string - Data source for the query (for example,
logs). - query
String 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Point Plot Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis, PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxisArgs
- Include
Zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- Include
Zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include_
zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero Boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include_
zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero Boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinition, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionArgs
- Custom
Links List<PowerpackV2Widget Group Definition Widget Query Table Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Has
Search stringBar - Controls the display of the search bar. Valid values are
always,never,auto. - Hide
Incomplete boolCost Data - 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<Powerpack
V2Widget Group Definition Widget Query Table Definition Request> - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQuery,apmStatsQueryorprocessQueryis required within therequestblock). - Time
Powerpack
V2Widget Group Definition Widget Query Table Definition Time - 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).
- Custom
Links []PowerpackV2Widget Group Definition Widget Query Table Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Has
Search stringBar - Controls the display of the search bar. Valid values are
always,never,auto. - Hide
Incomplete boolCost Data - 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
[]Powerpack
V2Widget Group Definition Widget Query Table Definition Request - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQuery,apmStatsQueryorprocessQueryis required within therequestblock). - Time
Powerpack
V2Widget Group Definition Widget Query Table Definition Time - 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).
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- has_
search_ stringbar - Controls the display of the search bar. Valid values are
always,never,auto. - hide_
incomplete_ boolcost_ data - 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
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQuery,apmStatsQueryorprocessQueryis required within therequestblock). - 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).
- custom
Links List<PowerpackV2Widget Group Definition Widget Query Table Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- has
Search StringBar - Controls the display of the search bar. Valid values are
always,never,auto. - hide
Incomplete BooleanCost Data - 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<Powerpack
V2Widget Group Definition Widget Query Table Definition Request> - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQuery,apmStatsQueryorprocessQueryis required within therequestblock). - time
Powerpack
V2Widget Group Definition Widget Query Table Definition Time - 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).
- custom
Links PowerpackV2Widget Group Definition Widget Query Table Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- has
Search stringBar - Controls the display of the search bar. Valid values are
always,never,auto. - hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request[] - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQuery,apmStatsQueryorprocessQueryis required within therequestblock). - time
Powerpack
V2Widget Group Definition Widget Query Table Definition Time - 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).
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- has_
search_ strbar - Controls the display of the search bar. Valid values are
always,never,auto. - hide_
incomplete_ boolcost_ data - 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[Powerpack
V2Widget Group Definition Widget Query Table Definition Request] - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQuery,apmStatsQueryorprocessQueryis required within therequestblock). - time
Powerpack
V2Widget Group Definition Widget Query Table Definition Time - 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).
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- has
Search StringBar - Controls the display of the search bar. Valid values are
always,never,auto. - hide
Incomplete BooleanCost Data - 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<Property Map>
- A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQuery,apmStatsQueryorprocessQueryis required within therequestblock). - 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
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).
- Apm
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats PowerpackQuery V2Widget Group Definition Widget Query Table Definition Request Apm Stats Query - The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.
- Cell
Display List<string>Modes - A list of display modes for each table cell. Valid values are
number,bar. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Conditional Format> - Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Formulas
List<Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula> - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Order string
- The sort order for the rows. Valid values are
asc,desc. - Process
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Text
Formats List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Text Format> - Text formats define how to format text in table widget content. Multiple
textFormatsblocks 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats PowerpackQuery V2Widget Group Definition Widget Query Table Definition Request Apm Stats Query - The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.
- Cell
Display []stringModes - A list of display modes for each table cell. Valid values are
number,bar. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Query Table Definition Request Conditional Format - Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Formulas
[]Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Order string
- The sort order for the rows. Valid values are
asc,desc. - Process
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Text
Formats []PowerpackV2Widget Group Definition Widget Query Table Definition Request Text Format - Text formats define how to format text in table widget content. Multiple
textFormatsblocks 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.
- apm_
stats_ objectquery - The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.
- cell_
display_ list(string)modes - 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
conditionalFormatsblocks 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. Deprecated. Use queries and formulas instead.
- text_
formats list(object) - Text formats define how to format text in table widget content. Multiple
textFormatsblocks 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats PowerpackQuery V2Widget Group Definition Widget Query Table Definition Request Apm Stats Query - The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.
- cell
Display List<String>Modes - A list of display modes for each table cell. Valid values are
number,bar. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Conditional Format> - Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - formulas
List<Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula> - 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.
- log
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- order String
- The sort order for the rows. Valid values are
asc,desc. - process
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- text
Formats List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Text Format> - Text formats define how to format text in table widget content. Multiple
textFormatsblocks 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats PowerpackQuery V2Widget Group Definition Widget Query Table Definition Request Apm Stats Query - The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.
- cell
Display string[]Modes - A list of display modes for each table cell. Valid values are
number,bar. - conditional
Formats PowerpackV2Widget Group Definition Widget Query Table Definition Request Conditional Format[] - Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - formulas
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula[] - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- order string
- The sort order for the rows. Valid values are
asc,desc. - process
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- text
Formats PowerpackV2Widget Group Definition Widget Query Table Definition Request Text Format[] - Text formats define how to format text in table widget content. Multiple
textFormatsblocks 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
stats_ Powerpackquery V2Widget Group Definition Widget Query Table Definition Request Apm Stats Query - The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.
- cell_
display_ Sequence[str]modes - A list of display modes for each table cell. Valid values are
number,bar. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Conditional Format] - Conditional formats allow you to set the color of your widget content or background, depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - formulas
Sequence[Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula] - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- order str
- The sort order for the rows. Valid values are
asc,desc. - process_
query PowerpackV2Widget Group Definition Widget Query Table Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- text_
formats Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Text Format] - Text formats define how to format text in table widget content. Multiple
textFormatsblocks 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 Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats Property MapQuery - The APM stats query for table and distribution widgets. Deprecated. Use queries and formulas instead.
- cell
Display List<String>Modes - A list of display modes for each table cell. Valid values are
number,bar. - conditional
Formats 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
conditionalFormatsblocks 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.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- order String
- The sort order for the rows. Valid values are
asc,desc. - process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- text
Formats List<Property Map> - Text formats define how to format text in table widget content. Multiple
textFormatsblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By Sort Query - 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 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.
- 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<Powerpack
V2Widget Group Definition Widget Query Table Definition Request Apm Stats Query Column> - 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
[]Powerpack
V2Widget Group Definition Widget Query Table Definition Request Apm Stats Query Column - 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.
- 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<Powerpack
V2Widget Group Definition Widget Query Table Definition Request Apm Stats Query Column> - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Apm Stats Query Column[] - 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[Powerpack
V2Widget Group Definition Widget Query Table Definition Request Apm Stats Query Column] - 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.
- 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<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.
- Cell
Display stringMode - 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 stringMode - 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_ stringmode - 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 StringMode - 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 stringMode - 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_ strmode - 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.
- cell
Display StringMode - 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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaArgs
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Query Table Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Query Table Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Query Table Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Query Table Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Query Table Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Query Table Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Query Table Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Query Table Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Query Table Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Query Table Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Query Table Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Query Table Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Query Table Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Query Table Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Query Table Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Query Table Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Query Table Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Query Table Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Query Table Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Query Table Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Table Definition Request Security Query Group By Sort Query - 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 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<PowerpackV2Widget Group Definition Widget Query Table Definition Request Text Format Text Format> - The text format to apply to the items in a table widget column.
- Text
Formats []PowerpackV2Widget Group Definition Widget Query Table Definition Request Text Format Text Format - The text format to apply to the items in a table widget column.
- text_
formats list(object) - The text format to apply to the items in a table widget column.
- text
Formats List<PowerpackV2Widget Group Definition Widget Query Table Definition Request Text Format Text Format> - The text format to apply to the items in a table widget column.
- text
Formats PowerpackV2Widget Group Definition Widget Query Table Definition Request Text Format Text Format[] - The text format to apply to the items in a table widget column.
- text_
formats Sequence[PowerpackV2Widget Group Definition Widget Query Table Definition Request Text Format Text Format] - The text format to apply to the items in a table widget column.
- text
Formats List<Property Map> - The text format to apply to the items in a table widget column.
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatArgs
- Match
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Match - Match rule for the table widget text format.
- Custom
Bg stringColor - The custom color palette to apply to the background.
- Custom
Fg stringColor - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Replace - Match rule for the table widget text format.
- Match
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Match - Match rule for the table widget text format.
- Custom
Bg stringColor - The custom color palette to apply to the background.
- Custom
Fg stringColor - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Replace - Match rule for the table widget text format.
- match object
- Match rule for the table widget text format.
- custom_
bg_ stringcolor - The custom color palette to apply to the background.
- custom_
fg_ stringcolor - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Match - Match rule for the table widget text format.
- custom
Bg StringColor - The custom color palette to apply to the background.
- custom
Fg StringColor - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Replace - Match rule for the table widget text format.
- match
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Match - Match rule for the table widget text format.
- custom
Bg stringColor - The custom color palette to apply to the background.
- custom
Fg stringColor - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Replace - Match rule for the table widget text format.
- match
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Match - Match rule for the table widget text format.
- custom_
bg_ strcolor - The custom color palette to apply to the background.
- custom_
fg_ strcolor - 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
Powerpack
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Replace - Match rule for the table widget text format.
- match Property Map
- Match rule for the table widget text format.
- custom
Bg StringColor - The custom color palette to apply to the background.
- custom
Fg StringColor - 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
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplace, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplaceArgs
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Query Table Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Query Table Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Query Table Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Query Table Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Query Table Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Query Table Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Query Table Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Query Table Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Query Table Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Query Table Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinition, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionArgs
- Autoscale bool
- A Boolean indicating whether to automatically scale the tile.
- Custom
Links List<PowerpackV2Widget Group Definition Widget Query Value Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks 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 boolCost Data - 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 int
- Number of decimals to show. If not defined, the widget uses the raw value.
- Requests
List<Powerpack
V2Widget Group Definition Widget Query Value Definition Request> - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within therequestblock). - Text
Align string - The alignment of the widget's text. Valid values are
center,left,right. - Time
Powerpack
V2Widget Group Definition Widget Query Value Definition Time - A nested block used to specify a time span for the widget. Use this or
liveSpan, not both. - Timeseries
Background PowerpackV2Widget Group Definition Widget Query Value Definition Timeseries Background - 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 bool
- A Boolean indicating whether to automatically scale the tile.
- Custom
Links []PowerpackV2Widget Group Definition Widget Query Value Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks 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 boolCost Data - 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 int
- Number of decimals to show. If not defined, the widget uses the raw value.
- Requests
[]Powerpack
V2Widget Group Definition Widget Query Value Definition Request - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within therequestblock). - Text
Align string - The alignment of the widget's text. Valid values are
center,left,right. - Time
Powerpack
V2Widget Group Definition Widget Query Value Definition Time - A nested block used to specify a time span for the widget. Use this or
liveSpan, not both. - Timeseries
Background PowerpackV2Widget Group Definition Widget Query Value Definition Timeseries Background - 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 bool
- A Boolean indicating whether to automatically scale the tile.
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks 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_ boolcost_ data - 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
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within therequestblock). - 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.
- custom
Links List<PowerpackV2Widget Group Definition Widget Query Value Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks 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 BooleanCost Data - 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 Integer
- Number of decimals to show. If not defined, the widget uses the raw value.
- requests
List<Powerpack
V2Widget Group Definition Widget Query Value Definition Request> - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within therequestblock). - text
Align String - The alignment of the widget's text. Valid values are
center,left,right. - time
Powerpack
V2Widget Group Definition Widget Query Value Definition Time - A nested block used to specify a time span for the widget. Use this or
liveSpan, not both. - timeseries
Background PowerpackV2Widget Group Definition Widget Query Value Definition Timeseries Background - 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.
- custom
Links PowerpackV2Widget Group Definition Widget Query Value Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks 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 booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request[] - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within therequestblock). - text
Align string - The alignment of the widget's text. Valid values are
center,left,right. - time
Powerpack
V2Widget Group Definition Widget Query Value Definition Time - A nested block used to specify a time span for the widget. Use this or
liveSpan, not both. - timeseries
Background PowerpackV2Widget Group Definition Widget Query Value Definition Timeseries Background - 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 bool
- A Boolean indicating whether to automatically scale the tile.
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks 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_ boolcost_ data - 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[Powerpack
V2Widget Group Definition Widget Query Value Definition Request] - A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within therequestblock). - text_
align str - The alignment of the widget's text. Valid values are
center,left,right. - time
Powerpack
V2Widget Group Definition Widget Query Value Definition Time - A nested block used to specify a time span for the widget. Use this or
liveSpan, not both. - timeseries_
background PowerpackV2Widget Group Definition Widget Query Value Definition Timeseries Background - 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.
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks 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 BooleanCost Data - 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<Property Map>
- A nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed using the structure below (exactly one ofq,apmQuery,logQuery,rumQuery,securityQueryorprocessQueryis required within therequestblock). - text
Align 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. - timeseries
Background Property Map - 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).
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestArgs
- Aggregator string
- The aggregator to use for time aggregation. Valid values are
avg,min,max,sum,last,area,l2norm,percentile. - Apm
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Audit
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Conditional
Formats List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Formulas
List<Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula> - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Audit
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Conditional
Formats []PowerpackV2Widget Group Definition Widget Query Value Definition Request Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Formulas
[]Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query - The query to use for this widget. 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.
- audit_
query object - The query to use for this widget. 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
conditionalFormatsblocks 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - formulas
List<Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula> - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats PowerpackV2Widget Group Definition Widget Query Value Definition Request Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - formulas
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula[] - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit_
query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - formulas
Sequence[Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula] - A list of formulas to use in the widget.
- log_
query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Group Definition Widget Query Value Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query - The query to use for this widget. 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 Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - formulas List<Property Map>
- A list of formulas to use in the widget.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By Sort Query - 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 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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormula, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaArgs
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Query Value Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Query Value Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Query Value Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Query Value Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Query Value Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Log Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Query Value Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Query Value Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Query Value Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Query Value Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Query Value Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Query Value Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Query Value Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Query Value Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Query Value Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Query Value Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Query Value Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Query Value Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Query Value Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Query Value Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Query Value Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Query Value Definition Request Security Query Group By Sort Query - 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 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Query Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Query Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Query Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Query Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Query Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Query Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Query Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Query Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Query Value Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackground, PowerpackV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundArgs
- Type string
- Whether the Timeseries is made using an area or bars. Valid values are
area,bars. - Yaxis
Powerpack
V2Widget Group Definition Widget Query Value Definition Timeseries Background Yaxis - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Timeseries Background Yaxis - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Timeseries Background Yaxis - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Timeseries Background Yaxis - 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
Powerpack
V2Widget Group Definition Widget Query Value Definition Timeseries Background Yaxis - 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
- Include
Zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- Include
Zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include_
zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero Boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include_
zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero Boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinition, PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionArgs
- Workflow
Id string - Workflow ID
- Custom
Links List<PowerpackV2Widget Group Definition Widget Run Workflow Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- Inputs
List<Powerpack
V2Widget Group Definition Widget Run Workflow Definition Input> - 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
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time - 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).
- Workflow
Id string - Workflow ID
- Custom
Links []PowerpackV2Widget Group Definition Widget Run Workflow Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- Inputs
[]Powerpack
V2Widget Group Definition Widget Run Workflow Definition Input Type - 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
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time - 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).
- workflow_
id string - Workflow ID
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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).
- workflow
Id String - Workflow ID
- custom
Links List<PowerpackV2Widget Group Definition Widget Run Workflow Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- inputs
List<Powerpack
V2Widget Group Definition Widget Run Workflow Definition Input> - 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
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time - 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).
- workflow
Id string - Workflow ID
- custom
Links PowerpackV2Widget Group Definition Widget Run Workflow Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- inputs
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Input[] - 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
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time - 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).
- workflow_
id str - Workflow ID
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Run Workflow Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- inputs
Sequence[Powerpack
V2Widget Group Definition Widget Run Workflow Definition Input] - 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
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time - 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).
- workflow
Id String - Workflow ID
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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.
- 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 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInput, PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInputArgs
PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Run Workflow Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinition, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionArgs
- Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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<Powerpack
V2Widget Group Definition Widget Sankey Definition Request> - A nested block describing the request to use when displaying the widget.
- Show
Other boolLinks - Whether to show links for the 'other' category.
- Sort
Nodes bool - Whether to sort nodes in the Sankey diagram.
- Time
Powerpack
V2Widget Group Definition Widget Sankey Definition Time - 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.
- Hide
Incomplete boolCost Data - 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
[]Powerpack
V2Widget Group Definition Widget Sankey Definition Request - A nested block describing the request to use when displaying the widget.
- Show
Other boolLinks - Whether to show links for the 'other' category.
- Sort
Nodes bool - Whether to sort nodes in the Sankey diagram.
- Time
Powerpack
V2Widget Group Definition Widget Sankey Definition Time - 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.
- hide_
incomplete_ boolcost_ data - 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_ boollinks - 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.
- hide
Incomplete BooleanCost Data - 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<Powerpack
V2Widget Group Definition Widget Sankey Definition Request> - A nested block describing the request to use when displaying the widget.
- show
Other BooleanLinks - Whether to show links for the 'other' category.
- sort
Nodes Boolean - Whether to sort nodes in the Sankey diagram.
- time
Powerpack
V2Widget Group Definition Widget Sankey Definition Time - 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.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Sankey Definition Request[] - A nested block describing the request to use when displaying the widget.
- show
Other booleanLinks - Whether to show links for the 'other' category.
- sort
Nodes boolean - Whether to sort nodes in the Sankey diagram.
- time
Powerpack
V2Widget Group Definition Widget Sankey Definition Time - 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 str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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[Powerpack
V2Widget Group Definition Widget Sankey Definition Request] - A nested block describing the request to use when displaying the widget.
- show_
other_ boollinks - Whether to show links for the 'other' category.
- sort_
nodes bool - Whether to sort nodes in the Sankey diagram.
- time
Powerpack
V2Widget Group Definition Widget Sankey Definition Time - 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.
- hide
Incomplete BooleanCost Data - 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<Property Map>
- A nested block describing the request to use when displaying the widget.
- show
Other BooleanLinks - Whether to show links for the 'other' category.
- sort
Nodes 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestArgs
- Network
Request PowerpackV2Widget Group Definition Widget Sankey Definition Request Network Request - Network request for the Sankey widget.
- Rum
Request PowerpackV2Widget Group Definition Widget Sankey Definition Request Rum Request - RUM request for the Sankey widget.
- Network
Request PowerpackV2Widget Group Definition Widget Sankey Definition Request Network Request - Network request for the Sankey widget.
- Rum
Request PowerpackV2Widget Group Definition Widget Sankey Definition Request Rum Request - RUM request for the Sankey widget.
- network_
request object - Network request for the Sankey widget.
- rum_
request object - RUM request for the Sankey widget.
- network
Request PowerpackV2Widget Group Definition Widget Sankey Definition Request Network Request - Network request for the Sankey widget.
- rum
Request PowerpackV2Widget Group Definition Widget Sankey Definition Request Rum Request - RUM request for the Sankey widget.
- network
Request PowerpackV2Widget Group Definition Widget Sankey Definition Request Network Request - Network request for the Sankey widget.
- rum
Request PowerpackV2Widget Group Definition Widget Sankey Definition Request Rum Request - RUM request for the Sankey widget.
- network_
request PowerpackV2Widget Group Definition Widget Sankey Definition Request Network Request - Network request for the Sankey widget.
- rum_
request PowerpackV2Widget Group Definition Widget Sankey Definition Request Rum Request - RUM request for the Sankey widget.
- network
Request Property Map - Network request for the Sankey widget.
- rum
Request Property Map - RUM request for the Sankey widget.
PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequest, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestArgs
- Query
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query - The query for the Sankey network request.
- Query
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query - The query for the Sankey network request.
- query
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query - The query for the Sankey network request.
- query
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query - The query for the Sankey network request.
- query
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query - The query for the Sankey network request.
- query Property Map
- The query for the Sankey network request.
PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryArgs
- 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 int
- Maximum number of results.
- Query
String string - The search query string.
- Compute
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query Compute - Compute aggregation configuration.
- Mode string
- The mode for the Sankey network query. Valid values are
target. - Should
Exclude boolMissing - Whether to exclude missing values.
- Sort
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query Sort - Sort configuration.
- Data
Source string - The data source for the Sankey network query. Valid values are
networkDeviceFlows,network. - Group
Bies []string - Fields to group by.
- Limit int
- Maximum number of results.
- Query
String string - The search query string.
- Compute
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query Compute - Compute aggregation configuration.
- Mode string
- The mode for the Sankey network query. Valid values are
target. - Should
Exclude boolMissing - Whether to exclude missing values.
- Sort
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query Sort - 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_ boolmissing - Whether to exclude missing values.
- sort object
- 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 Integer
- Maximum number of results.
- query
String String - The search query string.
- compute
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query Compute - Compute aggregation configuration.
- mode String
- The mode for the Sankey network query. Valid values are
target. - should
Exclude BooleanMissing - Whether to exclude missing values.
- sort
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query Sort - Sort configuration.
- data
Source string - The data source for the Sankey network query. Valid values are
networkDeviceFlows,network. - group
Bies string[] - Fields to group by.
- limit number
- Maximum number of results.
- query
String string - The search query string.
- compute
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query Compute - Compute aggregation configuration.
- mode string
- The mode for the Sankey network query. Valid values are
target. - should
Exclude booleanMissing - Whether to exclude missing values.
- sort
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query Sort - 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
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query Compute - Compute aggregation configuration.
- mode str
- The mode for the Sankey network query. Valid values are
target. - should_
exclude_ boolmissing - Whether to exclude missing values.
- sort
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Network Request Query Sort - 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 Property Map
- Compute aggregation configuration.
- mode String
- The mode for the Sankey network query. Valid values are
target. - should
Exclude BooleanMissing - 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
PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequest, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequestArgs
- Query
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Rum Request Query - The query for the Sankey RUM request.
- Query
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Rum Request Query - The query for the Sankey RUM request.
- query
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Rum Request Query - The query for the Sankey RUM request.
- query
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Rum Request Query - The query for the Sankey RUM request.
- query
Powerpack
V2Widget Group Definition Widget Sankey Definition Request Rum Request Query - The query for the Sankey RUM request.
- query Property Map
- The query for the Sankey RUM request.
PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequestQueryArgs
- 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 intStep - Entries per step.
- Number
Of intSteps - Number of steps.
- Source string
- Source field.
- Subquery
Id 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 intStep - Entries per step.
- Number
Of intSteps - Number of steps.
- Source string
- Source field.
- Subquery
Id 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_ numberstep - Entries per step.
- number_
of_ numbersteps - Number of steps.
- source string
- Source field.
- subquery_
id 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 IntegerStep - Entries per step.
- number
Of IntegerSteps - Number of steps.
- source String
- Source field.
- subquery
Id 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 numberStep - Entries per step.
- number
Of numberSteps - Number of steps.
- source string
- Source field.
- subquery
Id 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_ intstep - Entries per step.
- number_
of_ intsteps - Number of steps.
- source str
- Source field.
- subquery_
id str - Subquery ID.
- target str
- 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 NumberStep - Entries per step.
- number
Of NumberSteps - Number of steps.
- source String
- Source field.
- subquery
Id String - Subquery ID.
- target String
- Target field.
PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Sankey Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Sankey Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Sankey Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Sankey Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Sankey Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Sankey Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Sankey Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Sankey Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Sankey Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Sankey Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinition, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionArgs
- Color
By List<string>Groups - List of groups used for colors.
- Custom
Links List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request - A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed using the structure below. - Time
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- Yaxis
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Yaxis - A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
- Color
By []stringGroups - List of groups used for colors.
- Custom
Links []PowerpackV2Widget Group Definition Widget Scatterplot Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request - A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed using the structure below. - Time
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- Yaxis
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Yaxis - A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
- color_
by_ list(string)groups - List of groups used for colors.
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
requestblock 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.
- color
By List<String>Groups - List of groups used for colors.
- custom
Links List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request - A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed using the structure below. - time
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Yaxis - A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
- color
By string[]Groups - List of groups used for colors.
- custom
Links PowerpackV2Widget Group Definition Widget Scatterplot Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request - A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed using the structure below. - time
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Yaxis - A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
- color_
by_ Sequence[str]groups - List of groups used for colors.
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request - A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed using the structure below. - time
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Yaxis - A nested block describing the Y-Axis Controls. Exactly one nested block is allowed using the structure below.
- color
By List<String>Groups - List of groups used for colors.
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 Property Map
- A nested block describing the request to use when displaying the widget. Exactly one
requestblock 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.
- 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 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestArgs
- Scatterplot
Tables List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table> - Scatterplot request containing formulas and functions.
- X
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request X - 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,apmStatsQueryorprocessQueryis required within the block). - Y
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Y - 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,apmStatsQueryorprocessQueryis required within the block).
- Scatterplot
Tables []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table - Scatterplot request containing formulas and functions.
- X
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request X - 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,apmStatsQueryorprocessQueryis required within the block). - Y
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Y - 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,apmStatsQueryorprocessQueryis 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,apmStatsQueryorprocessQueryis 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,apmStatsQueryorprocessQueryis required within the block).
- scatterplot
Tables List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table> - Scatterplot request containing formulas and functions.
- x
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request X - 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,apmStatsQueryorprocessQueryis required within the block). - y
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Y - 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,apmStatsQueryorprocessQueryis required within the block).
- scatterplot
Tables PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table[] - Scatterplot request containing formulas and functions.
- x
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request X - 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,apmStatsQueryorprocessQueryis required within the block). - y
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Y - 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,apmStatsQueryorprocessQueryis required within the block).
- scatterplot_
tables Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table] - Scatterplot request containing formulas and functions.
- x
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request X - 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,apmStatsQueryorprocessQueryis required within the block). - y
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Y - 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,apmStatsQueryorprocessQueryis required within the block).
- scatterplot
Tables 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,apmStatsQueryorprocessQueryis 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,apmStatsQueryorprocessQueryis required within the block).
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTable, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableArgs
- Formulas
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Formula> - A list of formulas to use in the widget.
- Queries
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query> - A list of queries to use in the widget.
- Formulas
[]Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Formula - A list of formulas to use in the widget.
- Queries
[]Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query - A list of queries to use in the widget.
- 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<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Formula> - A list of formulas to use in the widget.
- queries
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query> - A list of queries to use in the widget.
- formulas
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Formula[] - A list of formulas to use in the widget.
- queries
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query[] - A list of queries to use in the widget.
- formulas
Sequence[Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Formula] - A list of formulas to use in the widget.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query] - 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. - 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. - 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. - 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. - 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. - formula
Expression 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. - formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Apm
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula> - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XProcess Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XProcess Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query - The query to use for this widget. 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.
- 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula> - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XProcess Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula[] - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XProcess Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula] - A list of formulas to use in the widget.
- log_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XProcess Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query - The query to use for this widget. 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 Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas List<Property Map>
- A list of formulas to use in the widget.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By Sort Query - 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 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
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Scatterplot Definition Request XFormula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Scatterplot Definition Request XFormula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Scatterplot Definition Request XFormula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Scatterplot Definition Request XFormula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Scatterplot Definition Request XFormula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request XQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request XQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request XQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request XQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Scatterplot Definition Request XQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By Sort Query - 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 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. - Apm
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula> - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YProcess Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YProcess Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query - The query to use for this widget. 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.
- 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.
- 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula> - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YProcess Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula[] - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YProcess Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query - The query to use for this widget. 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula] - A list of formulas to use in the widget.
- log_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YProcess Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query - The query to use for this widget. 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 Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas List<Property Map>
- A list of formulas to use in the widget.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By Sort Query - 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 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
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Scatterplot Definition Request YFormula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Scatterplot Definition Request YFormula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Scatterplot Definition Request YFormula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Scatterplot Definition Request YFormula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Scatterplot Definition Request YFormula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By Sort Query - 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 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.
- Filter
Bies List<string> - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By string - Your chosen search term.
- Metric string
- Your chosen metric.
- Filter
Bies []string - A list of processes.
- Limit int
- The max number of items in the filter list.
- Search
By 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.
- filter
Bies List<String> - A list of processes.
- limit Integer
- The max number of items in the filter list.
- search
By String - Your chosen search term.
- metric string
- Your chosen metric.
- filter
Bies string[] - A list of processes.
- limit number
- The max number of items in the filter list.
- search
By 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.
- 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryArgs
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request YQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Slo Query - The SLO query using formulas and functions.
- Apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request YQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query - A timeseries formula and functions events query.
- Metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Metric Query - A timeseries formula and functions metrics query.
- Process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Process Query - The process query using formulas and functions.
- Slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ objectstats_ query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ objectstats_ query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ objectquery - 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.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request YQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Slo Query - The SLO query using formulas and functions.
- apm
Dependency PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource PowerpackStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost PowerpackQuery V2Widget Group Definition Widget Scatterplot Definition Request YQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query - A timeseries formula and functions events query.
- metric
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Metric Query - A timeseries formula and functions metrics query.
- process
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Process Query - The process query using formulas and functions.
- slo
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Powerpackstats_ query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Powerpackstats_ query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Powerpackquery V2Widget Group Definition Widget Scatterplot Definition Request YQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query - A timeseries formula and functions events query.
- metric_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Metric Query - A timeseries formula and functions metrics query.
- process_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Process Query - The process query using formulas and functions.
- slo_
query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Slo Query - The SLO query using formulas and functions.
- apm
Dependency Property MapStats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource Property MapStats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost Property MapQuery - The Cloud Cost query using formulas and functions.
- event
Query Property Map - A timeseries formula and functions events query.
- metric
Query Property Map - A timeseries formula and functions metrics query.
- process
Query Property Map - The process query using formulas and functions.
- slo
Query Property Map - The SLO query using formulas and functions.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Upstream Boolean - Determines whether stats for upstream or downstream dependencies should be queried.
- primary
Tag StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQueryArgs
- 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 stringUuids - 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 stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []string - Array of fields to group results by.
- Operation
Name string - Name of operation on service.
- Primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - Primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - Resource
Name 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_ stringuuids - 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_ stringname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ stringvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies string[] - Array of fields to group results by.
- operation
Name string - Name of operation on service.
- primary
Tag stringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag stringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name 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_ struuids - 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_ strname - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary_
tag_ strvalue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource_
name str - 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 StringUuids - 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 StringName - The name of the second primary tag used within APM; required when
primaryTagValueis specified. See https://docs.datadoghq.com/tracing/guide/settingprimarytagstoscope/#add-a-second-primary-tag-in-datadog. - primary
Tag StringValue - Filter APM data by the second primary tag.
primaryTagNamemust also be specified. - resource
Name String - APM resource.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQueryArgs
- 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 stringUuids - 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 stringUuids - 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_ stringuuids - 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 StringUuids - 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 stringUuids - 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_ struuids - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryArgs
- Computes
List<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Compute> - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By> - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Compute - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By - Group by options.
- Group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Search - 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies list(object) - Group by options.
- group_
by_ objectfields - 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<Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Compute> - 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By> - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Compute[] - 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By[] - Group by options.
- group
By PowerpackFields V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Compute] - 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By] - Group by options.
- group_
by_ Powerpackfields V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Fields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Search - The search options.
- storage str
- Option for storage location. Feature in Private Beta.
- computes List<Property Map>
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- group
Bies List<Property Map> - Group by options.
- group
By Property MapFields - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Sort - The options for sorting group by results.
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Sort - The options for sorting group by results.
- facet String
- The event facet.
- limit Integer
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Sort - The options for sorting group by results.
- facet string
- The event facet.
- limit number
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Sort - The options for sorting group by results.
- facet str
- The event facet.
- limit int
- The number of groups to return.
- sort
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Fields Sort - 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By Fields Sort - 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. - Cross
Org stringUuids - 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. - Cross
Org stringUuids - 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. - cross_
org_ stringuuids - 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. - cross
Org StringUuids - 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. - cross
Org stringUuids - 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 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_ struuids - 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. - cross
Org StringUuids - 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQueryArgs
- 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters List<string> - An array of tags to filter by.
- Text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- Is
Normalized boolCpu - 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". - Tag
Filters []string - An array of tags to filter by.
- Text
Filter 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_ stringuuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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". - tag
Filters List<String> - An array of tags to filter by.
- text
Filter 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 stringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized booleanCpu - 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 string[] - An array of tags to filter by.
- text
Filter 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_ struuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is_
normalized_ boolcpu - 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.
- 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 StringUuids - The source organization UUID for cross organization queries. Feature in Private Beta.
- is
Normalized BooleanCpu - 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.
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQuery, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQueryArgs
- 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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 stringFilters - Additional filters applied to the SLO query.
- Cross
Org stringUuids - 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 stringType - 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_ stringfilters - Additional filters applied to the SLO query.
- cross_
org_ stringuuids - 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_ stringtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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 stringFilters - Additional filters applied to the SLO query.
- cross
Org stringUuids - 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 stringType - 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_ strfilters - Additional filters applied to the SLO query.
- cross_
org_ struuids - 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_ strtype - 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 StringFilters - Additional filters applied to the SLO query.
- cross
Org StringUuids - 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 StringType - 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By Sort Query - 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 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
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Scatterplot Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxis, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxisArgs
- Include
Zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- Include
Zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include_
zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero Boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include_
zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero Boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxis, PowerpackV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxisArgs
- Include
Zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- Include
Zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include_
zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero Boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include_
zero bool - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
- include
Zero Boolean - Set to
trueto 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, andpow##(for examplepow2orpow0.5).
PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinition, PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionArgs
- 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
detailis supported. - Additional
Query stringFilters - Additional filters applied to the SLO query.
- Description string
- The description of the widget.
- Global
Time stringTarget - The global time target of the widget.
- Hide
Incomplete boolCost Data - 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 boolBudget - Whether to show the error budget or not.
- Time
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time - 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).
- Slo
Id string - The ID of the service level objective used by the widget.
- Time
Windows []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
detailis supported. - Additional
Query stringFilters - Additional filters applied to the SLO query.
- Description string
- The description of the widget.
- Global
Time stringTarget - The global time target of the widget.
- Hide
Incomplete boolCost Data - 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 boolBudget - Whether to show the error budget or not.
- Time
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time - 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).
- 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
detailis supported. - additional_
query_ stringfilters - Additional filters applied to the SLO query.
- description string
- The description of the widget.
- global_
time_ stringtarget - The global time target of the widget.
- hide_
incomplete_ boolcost_ data - 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_ boolbudget - 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).
- 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
detailis supported. - additional
Query StringFilters - Additional filters applied to the SLO query.
- description String
- The description of the widget.
- global
Time StringTarget - The global time target of the widget.
- hide
Incomplete BooleanCost Data - 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 BooleanBudget - Whether to show the error budget or not.
- time
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time - 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).
- slo
Id string - The ID of the service level objective used by the widget.
- time
Windows 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
detailis supported. - additional
Query stringFilters - Additional filters applied to the SLO query.
- description string
- The description of the widget.
- global
Time stringTarget - The global time target of the widget.
- hide
Incomplete booleanCost Data - 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 booleanBudget - Whether to show the error budget or not.
- time
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time - 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).
- 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
detailis supported. - additional_
query_ strfilters - Additional filters applied to the SLO query.
- description str
- The description of the widget.
- global_
time_ strtarget - The global time target of the widget.
- hide_
incomplete_ boolcost_ data - 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_ boolbudget - Whether to show the error budget or not.
- time
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time - 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).
- 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
detailis supported. - additional
Query StringFilters - Additional filters applied to the SLO query.
- description String
- The description of the widget.
- global
Time StringTarget - The global time target of the widget.
- hide
Incomplete BooleanCost Data - 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 BooleanBudget - 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Service Level Objective Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLiveArgs
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.
- Custom
Links List<PowerpackV2Widget Group Definition Widget Servicemap Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time - 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 []string
- Your environment and primary tag (or
*if enabled for your account). - Service string
- The ID of the service to map.
- Custom
Links []PowerpackV2Widget Group Definition Widget Servicemap Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time - 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.
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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.
- custom
Links List<PowerpackV2Widget Group Definition Widget Servicemap Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time - 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 string[]
- Your environment and primary tag (or
*if enabled for your account). - service string
- The ID of the service to map.
- custom
Links PowerpackV2Widget Group Definition Widget Servicemap Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time - 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 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[PowerpackV2Widget Group Definition Widget Servicemap Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time - 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.
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Servicemap Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetSloListDefinition, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionArgs
- Requests
List<Powerpack
V2Widget Group Definition Widget Slo List Definition Request> - A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Slo List Definition Time - 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
[]Powerpack
V2Widget Group Definition Widget Slo List Definition Request - A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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
Powerpack
V2Widget Group Definition Widget Slo List Definition Time - 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(object)
- A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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<Powerpack
V2Widget Group Definition Widget Slo List Definition Request> - A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Slo List Definition Time - 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
Powerpack
V2Widget Group Definition Widget Slo List Definition Request[] - A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - 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
Powerpack
V2Widget Group Definition Widget Slo List Definition Time - 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
Sequence[Powerpack
V2Widget Group Definition Widget Slo List Definition Request] - A nested block describing the request to use when displaying the widget. Exactly one
requestblock is allowed. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
Powerpack
V2Widget Group Definition Widget Slo List Definition Time - 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
requestblock is allowed. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - 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 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequest, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestArgs
- Query
Powerpack
V2Widget Group Definition Widget Slo List Definition Request Query - Updated SLO List widget.
- Request
Type string - The request type for the SLO List request. Valid values are
sloList.
- Query
Powerpack
V2Widget Group Definition Widget Slo List Definition Request Query - Updated SLO List widget.
- Request
Type 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
Powerpack
V2Widget Group Definition Widget Slo List Definition Request Query - Updated SLO List widget.
- request
Type String - The request type for the SLO List request. Valid values are
sloList.
- query
Powerpack
V2Widget Group Definition Widget Slo List Definition Request Query - Updated SLO List widget.
- request
Type string - The request type for the SLO List request. Valid values are
sloList.
- query
Powerpack
V2Widget Group Definition Widget Slo List Definition Request Query - 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.
- request
Type String - The request type for the SLO List request. Valid values are
sloList.
PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuery, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQueryArgs
- Query
String string - Widget query.
- Limit int
- Maximum number of results to display in the table.
- Sorts
List<Powerpack
V2Widget Group Definition Widget Slo List Definition Request Query Sort> - The facet and order to sort the data, for example:
{"column": "status.sli", "order": "desc"}.
- Query
String string - Widget query.
- Limit int
- Maximum number of results to display in the table.
- Sorts
[]Powerpack
V2Widget Group Definition Widget Slo List Definition Request Query Sort - 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"}.
- query
String String - Widget query.
- limit Integer
- Maximum number of results to display in the table.
- sorts
List<Powerpack
V2Widget Group Definition Widget Slo List Definition Request Query Sort> - 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
Powerpack
V2Widget Group Definition Widget Slo List Definition Request Query Sort[] - 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[Powerpack
V2Widget Group Definition Widget Slo List Definition Request Query Sort] - 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<Property Map>
- The facet and order to sort the data, for example:
{"column": "status.sli", "order": "desc"}.
PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySort, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySortArgs
PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTime, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeArgs
- Fixed
Powerpack
V2Widget Group Definition Widget Slo List Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Slo List Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Powerpack
V2Widget Group Definition Widget Slo List Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Powerpack
V2Widget Group Definition Widget Slo List Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Slo List Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Slo List Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Slo List Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Slo List Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Powerpack
V2Widget Group Definition Widget Slo List Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Powerpack
V2Widget Group Definition Widget Slo List Definition Time Live - 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
PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLive, PowerpackV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLiveArgs
PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinition, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionArgs
- Custom
Links List<PowerpackV2Widget Group Definition Widget Sunburst Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Legend Inline - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- Legend
Table PowerpackV2Widget Group Definition Widget Sunburst Definition Legend Table - 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<Powerpack
V2Widget Group Definition Widget Sunburst Definition Request> - Nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed with the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - Time
Powerpack
V2Widget Group Definition Widget Sunburst Definition Time - 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).
- Custom
Links []PowerpackV2Widget Group Definition Widget Sunburst Definition Custom Link - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - Description string
- The description of the widget.
- Hide
Incomplete boolCost Data - 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Legend Inline - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- Legend
Table PowerpackV2Widget Group Definition Widget Sunburst Definition Legend Table - 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
[]Powerpack
V2Widget Group Definition Widget Sunburst Definition Request - Nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed with the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - Time
Powerpack
V2Widget Group Definition Widget Sunburst Definition Time - 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).
- custom_
links list(object) - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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
requestblocks are allowed with the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - 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).
- custom
Links List<PowerpackV2Widget Group Definition Widget Sunburst Definition Custom Link> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- hide
Total Boolean - Whether or not to show the total value in the widget.
- legend
Inline PowerpackV2Widget Group Definition Widget Sunburst Definition Legend Inline - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- legend
Table PowerpackV2Widget Group Definition Widget Sunburst Definition Legend Table - 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<Powerpack
V2Widget Group Definition Widget Sunburst Definition Request> - Nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed with the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - time
Powerpack
V2Widget Group Definition Widget Sunburst Definition Time - 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).
- custom
Links PowerpackV2Widget Group Definition Widget Sunburst Definition Custom Link[] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description string
- The description of the widget.
- hide
Incomplete booleanCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- hide
Total boolean - Whether or not to show the total value in the widget.
- legend
Inline PowerpackV2Widget Group Definition Widget Sunburst Definition Legend Inline - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- legend
Table PowerpackV2Widget Group Definition Widget Sunburst Definition Legend Table - 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
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request[] - Nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed with the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - time
Powerpack
V2Widget Group Definition Widget Sunburst Definition Time - 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).
- custom_
links Sequence[PowerpackV2Widget Group Definition Widget Sunburst Definition Custom Link] - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description str
- The description of the widget.
- hide_
incomplete_ boolcost_ data - 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Legend Inline - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- legend_
table PowerpackV2Widget Group Definition Widget Sunburst Definition Legend Table - 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[Powerpack
V2Widget Group Definition Widget Sunburst Definition Request] - Nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed with the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - time
Powerpack
V2Widget Group Definition Widget Sunburst Definition Time - 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).
- custom
Links List<Property Map> - A nested block describing a custom link. Multiple
customLinkblocks are allowed using the structure below. - description String
- The description of the widget.
- hide
Incomplete BooleanCost Data - Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
- hide
Total Boolean - Whether or not to show the total value in the widget.
- legend
Inline Property Map - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- legend
Table Property Map - 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<Property Map>
- Nested block describing the request to use when displaying the widget. Multiple
requestblocks are allowed with the structure below (exactly one ofq,logQueryorrumQueryis required within therequestblock). - 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.
- 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).
PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionCustomLink, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionCustomLinkArgs
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
- 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
httporhttps. 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, orrum.
PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInline, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInlineArgs
- 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).
- 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).
- 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).
- hide
Percent Boolean - Whether to hide the percentages of the groups.
- hide
Value Boolean - Whether to hide the values of the groups.
- type string
- The type of legend (inline or automatic).
- hide
Percent boolean - Whether to hide the percentages of the groups.
- hide
Value 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).
- hide
Percent Boolean - Whether to hide the percentages of the groups.
- hide
Value 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
- Apm
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Audit
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula> - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Network
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Network Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
List<Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Query> - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Style - Define style for the widget's request.
- Apm
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Audit
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula - A list of formulas to use in the widget.
- Log
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Network
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Network Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- Q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- Queries
[]Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Query - A list of queries to use in the widget.
- Rum
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Style - Define style for the widget's request.
- apm_
query object - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit_
query object - The query to use for this widget. 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.
- network_
query object - The query to use for this widget. 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.
- q string
- The metric query to use for this widget. 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.
- security_
query object - The query to use for this widget. 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.
- apm
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula> - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- network
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Network Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
List<Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Query> - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Style - Define style for the widget's request.
- apm
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula[] - A list of formulas to use in the widget.
- log
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- network
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Network Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q string
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Query[] - A list of queries to use in the widget.
- rum
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Style - Define style for the widget's request.
- apm_
query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit_
query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula] - A list of formulas to use in the widget.
- log_
query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- network_
query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Network Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Process Query - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q str
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries
Sequence[Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Query] - A list of queries to use in the widget.
- rum_
query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Style - Define style for the widget's request.
- apm
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas List<Property Map>
- A list of formulas to use in the widget.
- log
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- network
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query Property Map - The process query to use in the widget. The structure of this block is described below. Deprecated. Use queries and formulas instead.
- q String
- The metric query to use for this widget. Deprecated. Use queries and formulas instead.
- queries List<Property Map>
- A list of queries to use in the widget.
- rum
Query Property Map - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query Property Map - The query to use for this widget. 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. - Compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By Sort Query - 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 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. - Compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By Sort Query - 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 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
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Sunburst Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Style - Styling options for widget formulas.
- Formula
Expression string - A string expression built from queries, formulas, and functions.
- Alias string
- An expression alias.
- Cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - Cell
Display PowerpackMode Options V2Widget Group Definition Widget Sunburst Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Conditional Format - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - Limit
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Limit - The options for limiting results returned.
- Number
Format PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell_
display_ stringmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ objectmode_ options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - 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
conditionalFormatsblocks 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.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Sunburst Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Conditional Format> - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression string - A string expression built from queries, formulas, and functions.
- alias string
- An expression alias.
- cell
Display stringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display PowerpackMode Options V2Widget Group Definition Widget Sunburst Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Conditional Format[] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Limit - The options for limiting results returned.
- number
Format PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Style - Styling options for widget formulas.
- formula_
expression str - A string expression built from queries, formulas, and functions.
- alias str
- An expression alias.
- cell_
display_ strmode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell_
display_ Powerpackmode_ options V2Widget Group Definition Widget Sunburst Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional_
formats Sequence[PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Conditional Format] - Conditional formats allow you to set the color of your widget content or background depending on the rule applied to your data. Multiple
conditionalFormatsblocks are allowed using the structure below. - limit
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Limit - The options for limiting results returned.
- number_
format PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format - Number formatting options for the formula.
- style
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Style - Styling options for widget formulas.
- formula
Expression String - A string expression built from queries, formulas, and functions.
- alias String
- An expression alias.
- cell
Display StringMode - A list of display modes for each table cell. Valid values are
number,bar, andtrend. - cell
Display Property MapMode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats 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
conditionalFormatsblocks are allowed using the structure below. - limit Property Map
- The options for limiting results returned.
- number
Format Property Map - Number formatting options for the formula.
- style Property Map
- Styling options for widget formulas.
PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptions, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptionsArgs
- trend_
type string - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale string - The scale of the y-axis. Valid values are
sharedandindependent.
- trend_
type str - The type of trend line to display. Valid values are
area,line, andbars. - y_
scale str - The scale of the y-axis. Valid values are
sharedandindependent.
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.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 float64
- A value for the comparator.
- Custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- Custom
Fg stringColor - 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 number
- A value for the comparator.
- custom_
bg_ stringcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ stringcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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 number
- A value for the comparator.
- custom
Bg stringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg stringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value boolean - 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 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_ strcolor - The color palette to apply to the background, same values available as palette.
- custom_
fg_ strcolor - 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.
- custom
Bg StringColor - The color palette to apply to the background, same values available as palette.
- custom
Fg StringColor - The color palette to apply to the foreground, same values available as palette.
- hide
Value Boolean - 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.
PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimit, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimitArgs
PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormat, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatArgs
- Unit
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit object
- Unit of the number format.
- unit_
scale object - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale PowerpackV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit Property Map
- Unit of the number format.
- unit
Scale Property Map - The definition of
NumberFormatUnitScaleobject.
PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnit, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Powerpack
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCanonical, PowerpackV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- Per
Unit stringName - 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')
- Per
Unit stringName - 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')
- per_
unit_ stringname - 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')
- per
Unit StringName - 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')
- per
Unit stringName - 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')
- per_
unit_ strname - 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')
- per
Unit StringName - 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')
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
- Unit
Name string - The name of the unit.
- Unit
Name string - The name of the unit.
- unit_
name string - The name of the unit.
- unit
Name String - The name of the unit.
- unit
Name string - The name of the unit.
- unit_
name str - The name of the unit.
- unit
Name 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.
- 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.
- 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.
- 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.
- palette
Index 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.
- palette
Index 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.
- palette
Index 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. - Compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - Compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Multi Compute computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute_
query object computeQueryormultiComputeis required. The map keys are listed below.- group_
bies list(object) - Multiple
groupByblocks are allowed using the structure below. - multi_
computes list(object) computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Multi Compute> computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Multi Compute[] computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Multi Compute] computeQueryormultiComputeis required. MultiplemultiComputeblocks 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. - compute
Query Property Map computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<Property Map> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<Property Map> computeQueryormultiComputeis required. MultiplemultiComputeblocks are allowed using the structure below.- search
Query 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By Sort Query - 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.
- Sort
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By Sort Query - 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.
- sort
Query PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By Sort Query - 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 PowerpackV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By Sort Query - 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 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
datadogTerraform Provider.
published on Thursday, Jul 30, 2026 by Pulumi