published on Thursday, Jul 30, 2026 by Pulumi
published on Thursday, Jul 30, 2026 by Pulumi
[BETA] Provides an updated version of the Datadog dashboard resource which improves compliance with Datadog’s dashboard 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";
// Example Ordered Layout
const orderedDashboard = new datadog.DashboardV2("ordered_dashboard", {
title: "Ordered Layout Dashboard",
description: "Created using the Datadog provider in Pulumi",
layoutType: "ordered",
widgets: [
{
timeseriesDefinition: {
requests: [{
formulas: [{
formulaExpression: "my_query_1",
alias: "CPU Usage",
}],
queries: [{
metricQuery: {
dataSource: "metrics",
query: "avg:system.cpu.user{*} by {env}",
name: "my_query_1",
aggregator: "avg",
},
}],
}],
title: "CPU Usage by Environment",
liveSpan: "1h",
},
},
{
queryValueDefinition: {
requests: [{
formulas: [{
formulaExpression: "my_query_1",
}],
queries: [{
metricQuery: {
dataSource: "metrics",
query: "avg:system.load.1{*}",
name: "my_query_1",
aggregator: "avg",
},
}],
conditionalFormats: [
{
comparator: "<",
value: 2,
palette: "white_on_green",
},
{
comparator: ">",
value: 2.2,
palette: "white_on_red",
},
],
}],
autoscale: true,
precision: 4,
textAlign: "right",
title: "System Load",
liveSpan: "1h",
},
},
{
groupDefinition: {
layoutType: "ordered",
title: "Group Widget",
widgets: [{
noteDefinition: {
content: "cluster note widget",
backgroundColor: "pink",
fontSize: "14",
textAlign: "center",
showTick: true,
tickEdge: "left",
tickPos: "50%",
},
}],
},
},
],
templateVariables: [{
name: "var_1",
prefix: "host",
"default": "aws",
}],
});
// Example Free Layout
const freeDashboard = new datadog.DashboardV2("free_dashboard", {
title: "Free Layout Dashboard",
description: "Created using the Datadog provider in Pulumi",
layoutType: "free",
widgets: [{
timeseriesDefinition: {
requests: [{
formulas: [{
formulaExpression: "my_query_1",
}],
queries: [{
metricQuery: {
dataSource: "metrics",
query: "avg:system.cpu.user{*} by {env}",
name: "my_query_1",
aggregator: "sum",
},
}],
}],
},
widgetLayout: {
height: 16,
width: 25,
x: 0,
y: 0,
},
}],
templateVariables: [{
name: "var_1",
prefix: "host",
"default": "aws",
}],
});
import pulumi
import pulumi_datadog as datadog
# Example Ordered Layout
ordered_dashboard = datadog.DashboardV2("ordered_dashboard",
title="Ordered Layout Dashboard",
description="Created using the Datadog provider in Pulumi",
layout_type="ordered",
widgets=[
{
"timeseries_definition": {
"requests": [{
"formulas": [{
"formula_expression": "my_query_1",
"alias": "CPU Usage",
}],
"queries": [{
"metric_query": {
"data_source": "metrics",
"query": "avg:system.cpu.user{*} by {env}",
"name": "my_query_1",
"aggregator": "avg",
},
}],
}],
"title": "CPU Usage by Environment",
"live_span": "1h",
},
},
{
"query_value_definition": {
"requests": [{
"formulas": [{
"formula_expression": "my_query_1",
}],
"queries": [{
"metric_query": {
"data_source": "metrics",
"query": "avg:system.load.1{*}",
"name": "my_query_1",
"aggregator": "avg",
},
}],
"conditional_formats": [
{
"comparator": "<",
"value": float(2),
"palette": "white_on_green",
},
{
"comparator": ">",
"value": 2.2,
"palette": "white_on_red",
},
],
}],
"autoscale": True,
"precision": 4,
"text_align": "right",
"title": "System Load",
"live_span": "1h",
},
},
{
"group_definition": {
"layout_type": "ordered",
"title": "Group Widget",
"widgets": [{
"note_definition": {
"content": "cluster note widget",
"background_color": "pink",
"font_size": "14",
"text_align": "center",
"show_tick": True,
"tick_edge": "left",
"tick_pos": "50%",
},
}],
},
},
],
template_variables=[{
"name": "var_1",
"prefix": "host",
"default": "aws",
}])
# Example Free Layout
free_dashboard = datadog.DashboardV2("free_dashboard",
title="Free Layout Dashboard",
description="Created using the Datadog provider in Pulumi",
layout_type="free",
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": "sum",
},
}],
}],
},
"widget_layout": {
"height": 16,
"width": 25,
"x": 0,
"y": 0,
},
}],
template_variables=[{
"name": "var_1",
"prefix": "host",
"default": "aws",
}])
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 {
// Example Ordered Layout
_, err := datadog.NewDashboardV2(ctx, "ordered_dashboard", &datadog.DashboardV2Args{
Title: pulumi.String("Ordered Layout Dashboard"),
Description: pulumi.String("Created using the Datadog provider in Pulumi"),
LayoutType: pulumi.String("ordered"),
Widgets: datadog.DashboardV2WidgetArray{
&datadog.DashboardV2WidgetArgs{
TimeseriesDefinition: &datadog.DashboardV2WidgetTimeseriesDefinitionArgs{
Requests: datadog.DashboardV2WidgetTimeseriesDefinitionRequestArray{
&datadog.DashboardV2WidgetTimeseriesDefinitionRequestArgs{
Formulas: datadog.DashboardV2WidgetTimeseriesDefinitionRequestFormulaArray{
&datadog.DashboardV2WidgetTimeseriesDefinitionRequestFormulaArgs{
FormulaExpression: pulumi.String("my_query_1"),
Alias: pulumi.String("CPU Usage"),
},
},
Queries: datadog.DashboardV2WidgetTimeseriesDefinitionRequestQueryArray{
&datadog.DashboardV2WidgetTimeseriesDefinitionRequestQueryArgs{
MetricQuery: &datadog.DashboardV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs{
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 by Environment"),
LiveSpan: pulumi.String("1h"),
},
},
&datadog.DashboardV2WidgetArgs{
QueryValueDefinition: &datadog.DashboardV2WidgetQueryValueDefinitionArgs{
Requests: datadog.DashboardV2WidgetQueryValueDefinitionRequestArray{
&datadog.DashboardV2WidgetQueryValueDefinitionRequestArgs{
Formulas: datadog.DashboardV2WidgetQueryValueDefinitionRequestFormulaArray{
&datadog.DashboardV2WidgetQueryValueDefinitionRequestFormulaArgs{
FormulaExpression: pulumi.String("my_query_1"),
},
},
Queries: datadog.DashboardV2WidgetQueryValueDefinitionRequestQueryArray{
&datadog.DashboardV2WidgetQueryValueDefinitionRequestQueryArgs{
MetricQuery: &datadog.DashboardV2WidgetQueryValueDefinitionRequestQueryMetricQueryArgs{
DataSource: pulumi.String("metrics"),
Query: pulumi.String("avg:system.load.1{*}"),
Name: pulumi.String("my_query_1"),
Aggregator: pulumi.String("avg"),
},
},
},
ConditionalFormats: datadog.DashboardV2WidgetQueryValueDefinitionRequestConditionalFormatArray{
&datadog.DashboardV2WidgetQueryValueDefinitionRequestConditionalFormatArgs{
Comparator: pulumi.String("<"),
Value: pulumi.Float64(2),
Palette: pulumi.String("white_on_green"),
},
&datadog.DashboardV2WidgetQueryValueDefinitionRequestConditionalFormatArgs{
Comparator: pulumi.String(">"),
Value: pulumi.Float64(2.2),
Palette: pulumi.String("white_on_red"),
},
},
},
},
Autoscale: pulumi.Bool(true),
Precision: pulumi.Int(4),
TextAlign: pulumi.String("right"),
Title: pulumi.String("System Load"),
LiveSpan: pulumi.String("1h"),
},
},
&datadog.DashboardV2WidgetArgs{
GroupDefinition: &datadog.DashboardV2WidgetGroupDefinitionArgs{
LayoutType: pulumi.String("ordered"),
Title: pulumi.String("Group Widget"),
Widgets: datadog.DashboardV2WidgetGroupDefinitionWidgetArray{
&datadog.DashboardV2WidgetGroupDefinitionWidgetArgs{
NoteDefinition: &datadog.DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionArgs{
Content: pulumi.String("cluster note widget"),
BackgroundColor: pulumi.String("pink"),
FontSize: pulumi.String("14"),
TextAlign: pulumi.String("center"),
ShowTick: pulumi.Bool(true),
TickEdge: pulumi.String("left"),
TickPos: pulumi.String("50%"),
},
},
},
},
},
},
TemplateVariables: datadog.DashboardV2TemplateVariableArray{
&datadog.DashboardV2TemplateVariableArgs{
Name: pulumi.String("var_1"),
Prefix: pulumi.String("host"),
Default: pulumi.String("aws"),
},
},
})
if err != nil {
return err
}
// Example Free Layout
_, err = datadog.NewDashboardV2(ctx, "free_dashboard", &datadog.DashboardV2Args{
Title: pulumi.String("Free Layout Dashboard"),
Description: pulumi.String("Created using the Datadog provider in Pulumi"),
LayoutType: pulumi.String("free"),
Widgets: datadog.DashboardV2WidgetArray{
&datadog.DashboardV2WidgetArgs{
TimeseriesDefinition: &datadog.DashboardV2WidgetTimeseriesDefinitionArgs{
Requests: datadog.DashboardV2WidgetTimeseriesDefinitionRequestArray{
&datadog.DashboardV2WidgetTimeseriesDefinitionRequestArgs{
Formulas: datadog.DashboardV2WidgetTimeseriesDefinitionRequestFormulaArray{
&datadog.DashboardV2WidgetTimeseriesDefinitionRequestFormulaArgs{
FormulaExpression: pulumi.String("my_query_1"),
},
},
Queries: datadog.DashboardV2WidgetTimeseriesDefinitionRequestQueryArray{
&datadog.DashboardV2WidgetTimeseriesDefinitionRequestQueryArgs{
MetricQuery: &datadog.DashboardV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs{
DataSource: pulumi.String("metrics"),
Query: pulumi.String("avg:system.cpu.user{*} by {env}"),
Name: pulumi.String("my_query_1"),
Aggregator: pulumi.String("sum"),
},
},
},
},
},
},
WidgetLayout: &datadog.DashboardV2WidgetWidgetLayoutArgs{
Height: pulumi.Int(16),
Width: pulumi.Int(25),
X: pulumi.Int(0),
Y: pulumi.Int(0),
},
},
},
TemplateVariables: datadog.DashboardV2TemplateVariableArray{
&datadog.DashboardV2TemplateVariableArgs{
Name: pulumi.String("var_1"),
Prefix: pulumi.String("host"),
Default: pulumi.String("aws"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Datadog = Pulumi.Datadog;
return await Deployment.RunAsync(() =>
{
// Example Ordered Layout
var orderedDashboard = new Datadog.DashboardV2("ordered_dashboard", new()
{
Title = "Ordered Layout Dashboard",
Description = "Created using the Datadog provider in Pulumi",
LayoutType = "ordered",
Widgets = new[]
{
new Datadog.Inputs.DashboardV2WidgetArgs
{
TimeseriesDefinition = new Datadog.Inputs.DashboardV2WidgetTimeseriesDefinitionArgs
{
Requests = new[]
{
new Datadog.Inputs.DashboardV2WidgetTimeseriesDefinitionRequestArgs
{
Formulas = new[]
{
new Datadog.Inputs.DashboardV2WidgetTimeseriesDefinitionRequestFormulaArgs
{
FormulaExpression = "my_query_1",
Alias = "CPU Usage",
},
},
Queries = new[]
{
new Datadog.Inputs.DashboardV2WidgetTimeseriesDefinitionRequestQueryArgs
{
MetricQuery = new Datadog.Inputs.DashboardV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs
{
DataSource = "metrics",
Query = "avg:system.cpu.user{*} by {env}",
Name = "my_query_1",
Aggregator = "avg",
},
},
},
},
},
Title = "CPU Usage by Environment",
LiveSpan = "1h",
},
},
new Datadog.Inputs.DashboardV2WidgetArgs
{
QueryValueDefinition = new Datadog.Inputs.DashboardV2WidgetQueryValueDefinitionArgs
{
Requests = new[]
{
new Datadog.Inputs.DashboardV2WidgetQueryValueDefinitionRequestArgs
{
Formulas = new[]
{
new Datadog.Inputs.DashboardV2WidgetQueryValueDefinitionRequestFormulaArgs
{
FormulaExpression = "my_query_1",
},
},
Queries = new[]
{
new Datadog.Inputs.DashboardV2WidgetQueryValueDefinitionRequestQueryArgs
{
MetricQuery = new Datadog.Inputs.DashboardV2WidgetQueryValueDefinitionRequestQueryMetricQueryArgs
{
DataSource = "metrics",
Query = "avg:system.load.1{*}",
Name = "my_query_1",
Aggregator = "avg",
},
},
},
ConditionalFormats = new[]
{
new Datadog.Inputs.DashboardV2WidgetQueryValueDefinitionRequestConditionalFormatArgs
{
Comparator = "<",
Value = 2,
Palette = "white_on_green",
},
new Datadog.Inputs.DashboardV2WidgetQueryValueDefinitionRequestConditionalFormatArgs
{
Comparator = ">",
Value = 2.2,
Palette = "white_on_red",
},
},
},
},
Autoscale = true,
Precision = 4,
TextAlign = "right",
Title = "System Load",
LiveSpan = "1h",
},
},
new Datadog.Inputs.DashboardV2WidgetArgs
{
GroupDefinition = new Datadog.Inputs.DashboardV2WidgetGroupDefinitionArgs
{
LayoutType = "ordered",
Title = "Group Widget",
Widgets = new[]
{
new Datadog.Inputs.DashboardV2WidgetGroupDefinitionWidgetArgs
{
NoteDefinition = new Datadog.Inputs.DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionArgs
{
Content = "cluster note widget",
BackgroundColor = "pink",
FontSize = "14",
TextAlign = "center",
ShowTick = true,
TickEdge = "left",
TickPos = "50%",
},
},
},
},
},
},
TemplateVariables = new[]
{
new Datadog.Inputs.DashboardV2TemplateVariableArgs
{
Name = "var_1",
Prefix = "host",
Default = "aws",
},
},
});
// Example Free Layout
var freeDashboard = new Datadog.DashboardV2("free_dashboard", new()
{
Title = "Free Layout Dashboard",
Description = "Created using the Datadog provider in Pulumi",
LayoutType = "free",
Widgets = new[]
{
new Datadog.Inputs.DashboardV2WidgetArgs
{
TimeseriesDefinition = new Datadog.Inputs.DashboardV2WidgetTimeseriesDefinitionArgs
{
Requests = new[]
{
new Datadog.Inputs.DashboardV2WidgetTimeseriesDefinitionRequestArgs
{
Formulas = new[]
{
new Datadog.Inputs.DashboardV2WidgetTimeseriesDefinitionRequestFormulaArgs
{
FormulaExpression = "my_query_1",
},
},
Queries = new[]
{
new Datadog.Inputs.DashboardV2WidgetTimeseriesDefinitionRequestQueryArgs
{
MetricQuery = new Datadog.Inputs.DashboardV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs
{
DataSource = "metrics",
Query = "avg:system.cpu.user{*} by {env}",
Name = "my_query_1",
Aggregator = "sum",
},
},
},
},
},
},
WidgetLayout = new Datadog.Inputs.DashboardV2WidgetWidgetLayoutArgs
{
Height = 16,
Width = 25,
X = 0,
Y = 0,
},
},
},
TemplateVariables = new[]
{
new Datadog.Inputs.DashboardV2TemplateVariableArgs
{
Name = "var_1",
Prefix = "host",
Default = "aws",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.datadog.DashboardV2;
import com.pulumi.datadog.DashboardV2Args;
import com.pulumi.datadog.inputs.DashboardV2WidgetArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetTimeseriesDefinitionArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetTimeseriesDefinitionRequestArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetTimeseriesDefinitionRequestFormulaArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetTimeseriesDefinitionRequestQueryArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetQueryValueDefinitionArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetQueryValueDefinitionRequestArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetQueryValueDefinitionRequestFormulaArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetQueryValueDefinitionRequestQueryArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetQueryValueDefinitionRequestQueryMetricQueryArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetQueryValueDefinitionRequestConditionalFormatArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetGroupDefinitionArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetGroupDefinitionWidgetArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionArgs;
import com.pulumi.datadog.inputs.DashboardV2TemplateVariableArgs;
import com.pulumi.datadog.inputs.DashboardV2WidgetWidgetLayoutArgs;
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) {
// Example Ordered Layout
var orderedDashboard = new DashboardV2("orderedDashboard", DashboardV2Args.builder()
.title("Ordered Layout Dashboard")
.description("Created using the Datadog provider in Pulumi")
.layoutType("ordered")
.widgets(
DashboardV2WidgetArgs.builder()
.timeseriesDefinition(DashboardV2WidgetTimeseriesDefinitionArgs.builder()
.requests(DashboardV2WidgetTimeseriesDefinitionRequestArgs.builder()
.formulas(DashboardV2WidgetTimeseriesDefinitionRequestFormulaArgs.builder()
.formulaExpression("my_query_1")
.alias("CPU Usage")
.build())
.queries(DashboardV2WidgetTimeseriesDefinitionRequestQueryArgs.builder()
.metricQuery(DashboardV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs.builder()
.dataSource("metrics")
.query("avg:system.cpu.user{*} by {env}")
.name("my_query_1")
.aggregator("avg")
.build())
.build())
.build())
.title("CPU Usage by Environment")
.liveSpan("1h")
.build())
.build(),
DashboardV2WidgetArgs.builder()
.queryValueDefinition(DashboardV2WidgetQueryValueDefinitionArgs.builder()
.requests(DashboardV2WidgetQueryValueDefinitionRequestArgs.builder()
.formulas(DashboardV2WidgetQueryValueDefinitionRequestFormulaArgs.builder()
.formulaExpression("my_query_1")
.build())
.queries(DashboardV2WidgetQueryValueDefinitionRequestQueryArgs.builder()
.metricQuery(DashboardV2WidgetQueryValueDefinitionRequestQueryMetricQueryArgs.builder()
.dataSource("metrics")
.query("avg:system.load.1{*}")
.name("my_query_1")
.aggregator("avg")
.build())
.build())
.conditionalFormats(
DashboardV2WidgetQueryValueDefinitionRequestConditionalFormatArgs.builder()
.comparator("<")
.value(2.0)
.palette("white_on_green")
.build(),
DashboardV2WidgetQueryValueDefinitionRequestConditionalFormatArgs.builder()
.comparator(">")
.value(2.2)
.palette("white_on_red")
.build())
.build())
.autoscale(true)
.precision(4)
.textAlign("right")
.title("System Load")
.liveSpan("1h")
.build())
.build(),
DashboardV2WidgetArgs.builder()
.groupDefinition(DashboardV2WidgetGroupDefinitionArgs.builder()
.layoutType("ordered")
.title("Group Widget")
.widgets(DashboardV2WidgetGroupDefinitionWidgetArgs.builder()
.noteDefinition(DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionArgs.builder()
.content("cluster note widget")
.backgroundColor("pink")
.fontSize("14")
.textAlign("center")
.showTick(true)
.tickEdge("left")
.tickPos("50%")
.build())
.build())
.build())
.build())
.templateVariables(DashboardV2TemplateVariableArgs.builder()
.name("var_1")
.prefix("host")
.default_("aws")
.build())
.build());
// Example Free Layout
var freeDashboard = new DashboardV2("freeDashboard", DashboardV2Args.builder()
.title("Free Layout Dashboard")
.description("Created using the Datadog provider in Pulumi")
.layoutType("free")
.widgets(DashboardV2WidgetArgs.builder()
.timeseriesDefinition(DashboardV2WidgetTimeseriesDefinitionArgs.builder()
.requests(DashboardV2WidgetTimeseriesDefinitionRequestArgs.builder()
.formulas(DashboardV2WidgetTimeseriesDefinitionRequestFormulaArgs.builder()
.formulaExpression("my_query_1")
.build())
.queries(DashboardV2WidgetTimeseriesDefinitionRequestQueryArgs.builder()
.metricQuery(DashboardV2WidgetTimeseriesDefinitionRequestQueryMetricQueryArgs.builder()
.dataSource("metrics")
.query("avg:system.cpu.user{*} by {env}")
.name("my_query_1")
.aggregator("sum")
.build())
.build())
.build())
.build())
.widgetLayout(DashboardV2WidgetWidgetLayoutArgs.builder()
.height(16)
.width(25)
.x(0)
.y(0)
.build())
.build())
.templateVariables(DashboardV2TemplateVariableArgs.builder()
.name("var_1")
.prefix("host")
.default_("aws")
.build())
.build());
}
}
resources:
# Example Ordered Layout
orderedDashboard:
type: datadog:DashboardV2
name: ordered_dashboard
properties:
title: Ordered Layout Dashboard
description: Created using the Datadog provider in Pulumi
layoutType: ordered
widgets:
- timeseriesDefinition:
requests:
- formulas:
- formulaExpression: my_query_1
alias: CPU Usage
queries:
- metricQuery:
dataSource: metrics
query: avg:system.cpu.user{*} by {env}
name: my_query_1
aggregator: avg
title: CPU Usage by Environment
liveSpan: 1h
- queryValueDefinition:
requests:
- formulas:
- formulaExpression: my_query_1
queries:
- metricQuery:
dataSource: metrics
query: avg:system.load.1{*}
name: my_query_1
aggregator: avg
conditionalFormats:
- comparator: <
value: '2'
palette: white_on_green
- comparator: '>'
value: '2.2'
palette: white_on_red
autoscale: true
precision: '4'
textAlign: right
title: System Load
liveSpan: 1h
- groupDefinition:
layoutType: ordered
title: Group Widget
widgets:
- noteDefinition:
content: cluster note widget
backgroundColor: pink
fontSize: '14'
textAlign: center
showTick: true
tickEdge: left
tickPos: 50%
templateVariables:
- name: var_1
prefix: host
default: aws
# Example Free Layout
freeDashboard:
type: datadog:DashboardV2
name: free_dashboard
properties:
title: Free Layout Dashboard
description: Created using the Datadog provider in Pulumi
layoutType: free
widgets:
- timeseriesDefinition:
requests:
- formulas:
- formulaExpression: my_query_1
queries:
- metricQuery:
dataSource: metrics
query: avg:system.cpu.user{*} by {env}
name: my_query_1
aggregator: sum
widgetLayout:
height: 16
width: 25
x: 0
y: 0
templateVariables:
- name: var_1
prefix: host
default: aws
pulumi {
required_providers {
datadog = {
source = "pulumi/datadog"
}
}
}
# Example Ordered Layout
resource "datadog_dashboardv2" "ordered_dashboard" {
title = "Ordered Layout Dashboard"
description = "Created using the Datadog provider in Pulumi"
layout_type = "ordered"
widgets {
timeseries_definition = {
requests = [{
"formulas" = [{
"formulaExpression" = "my_query_1"
"alias" = "CPU Usage"
}]
"queries" = [{
"metricQuery" = {
"dataSource" = "metrics"
"query" = "avg:system.cpu.user{*} by {env}"
"name" = "my_query_1"
"aggregator" = "avg"
}
}]
}]
title = "CPU Usage by Environment"
live_span = "1h"
}
}
widgets {
query_value_definition = {
requests = [{
"formulas" = [{
"formulaExpression" = "my_query_1"
}]
"queries" = [{
"metricQuery" = {
"dataSource" = "metrics"
"query" = "avg:system.load.1{*}"
"name" = "my_query_1"
"aggregator" = "avg"
}
}]
"conditionalFormats" = [{
"comparator" = "<"
"value" = "2"
"palette" = "white_on_green"
}, {
"comparator" = ">"
"value" = "2.2"
"palette" = "white_on_red"
}]
}]
autoscale = true
precision = "4"
text_align = "right"
title = "System Load"
live_span = "1h"
}
}
widgets {
group_definition = {
layout_type = "ordered"
title = "Group Widget"
widgets = [{
"noteDefinition" = {
"content" = "cluster note widget"
"backgroundColor" = "pink"
"fontSize" = "14"
"textAlign" = "center"
"showTick" = true
"tickEdge" = "left"
"tickPos" = "50%"
}
}]
}
}
template_variables {
name = "var_1"
prefix = "host"
default = "aws"
}
}
# Example Free Layout
resource "datadog_dashboardv2" "free_dashboard" {
title = "Free Layout Dashboard"
description = "Created using the Datadog provider in Pulumi"
layout_type = "free"
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" = "sum"
}
}]
}]
}
widget_layout = {
height = 16
width = 25
x = 0
y = 0
}
}
template_variables {
name = "var_1"
prefix = "host"
default = "aws"
}
}
Create DashboardV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DashboardV2(name: string, args: DashboardV2Args, opts?: CustomResourceOptions);@overload
def DashboardV2(resource_name: str,
args: DashboardV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def DashboardV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
layout_type: Optional[str] = None,
title: Optional[str] = None,
reflow_type: Optional[str] = None,
is_read_only: Optional[bool] = None,
description: Optional[str] = None,
notify_lists: Optional[Sequence[str]] = None,
dashboard_lists: Optional[Sequence[int]] = None,
restricted_roles: Optional[Sequence[str]] = None,
tabs: Optional[Sequence[DashboardV2TabArgs]] = None,
tags: Optional[Sequence[str]] = None,
template_variable_presets: Optional[Sequence[DashboardV2TemplateVariablePresetArgs]] = None,
template_variables: Optional[Sequence[DashboardV2TemplateVariableArgs]] = None,
dashboard_lists_removeds: Optional[Sequence[int]] = None,
url: Optional[str] = None,
widgets: Optional[Sequence[DashboardV2WidgetArgs]] = None)func NewDashboardV2(ctx *Context, name string, args DashboardV2Args, opts ...ResourceOption) (*DashboardV2, error)public DashboardV2(string name, DashboardV2Args args, CustomResourceOptions? opts = null)
public DashboardV2(String name, DashboardV2Args args)
public DashboardV2(String name, DashboardV2Args args, CustomResourceOptions options)
type: datadog:DashboardV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "datadog_dashboard_v2" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args DashboardV2Args
- 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 DashboardV2Args
- 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 DashboardV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DashboardV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DashboardV2Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
DashboardV2 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 DashboardV2 resource accepts the following input properties:
- Layout
Type string - The layout type of the dashboard. Valid values are
ordered,free. - Title string
- The title of the dashboard.
- Dashboard
Lists List<int> - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- Dashboard
Lists List<int>Removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- Description string
- The description of the dashboard.
- Is
Read boolOnly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - Notify
Lists List<string> - The list of handles for the users to notify when changes are made to this dashboard.
- Reflow
Type string - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - Restricted
Roles List<string> - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- Tabs
List<Dashboard
V2Tab> - List of tabs for organizing widgets.
- List<string>
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - Template
Variable List<DashboardPresets V2Template Variable Preset> - The list of selectable template variable presets for this dashboard.
- Template
Variables List<DashboardV2Template Variable> - The list of template variables for this dashboard.
- Url string
- The URL of the dashboard.
- Widgets
List<Dashboard
V2Widget> - The list of widgets to display on the dashboard.
- Layout
Type string - The layout type of the dashboard. Valid values are
ordered,free. - Title string
- The title of the dashboard.
- Dashboard
Lists []int - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- Dashboard
Lists []intRemoveds - A list of dashboard lists this dashboard should be removed from. Internal only.
- Description string
- The description of the dashboard.
- Is
Read boolOnly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - Notify
Lists []string - The list of handles for the users to notify when changes are made to this dashboard.
- Reflow
Type string - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - Restricted
Roles []string - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- Tabs
[]Dashboard
V2Tab Args - List of tabs for organizing widgets.
- []string
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - Template
Variable []DashboardPresets V2Template Variable Preset Args - The list of selectable template variable presets for this dashboard.
- Template
Variables []DashboardV2Template Variable Args - The list of template variables for this dashboard.
- Url string
- The URL of the dashboard.
- Widgets
[]Dashboard
V2Widget Args - The list of widgets to display on the dashboard.
- layout_
type string - The layout type of the dashboard. Valid values are
ordered,free. - title string
- The title of the dashboard.
- dashboard_
lists list(number) - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- dashboard_
lists_ list(number)removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- description string
- The description of the dashboard.
- is_
read_ boolonly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - notify_
lists list(string) - The list of handles for the users to notify when changes are made to this dashboard.
- reflow_
type string - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - restricted_
roles list(string) - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- tabs list(object)
- List of tabs for organizing widgets.
- list(string)
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - template_
variable_ list(object)presets - The list of selectable template variable presets for this dashboard.
- template_
variables list(object) - The list of template variables for this dashboard.
- url string
- The URL of the dashboard.
- widgets list(object)
- The list of widgets to display on the dashboard.
- layout
Type String - The layout type of the dashboard. Valid values are
ordered,free. - title String
- The title of the dashboard.
- dashboard
Lists List<Integer> - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- dashboard
Lists List<Integer>Removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- description String
- The description of the dashboard.
- is
Read BooleanOnly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - notify
Lists List<String> - The list of handles for the users to notify when changes are made to this dashboard.
- reflow
Type String - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - restricted
Roles List<String> - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- tabs
List<Dashboard
V2Tab> - List of tabs for organizing widgets.
- List<String>
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - template
Variable List<DashboardPresets V2Template Variable Preset> - The list of selectable template variable presets for this dashboard.
- template
Variables List<DashboardV2Template Variable> - The list of template variables for this dashboard.
- url String
- The URL of the dashboard.
- widgets
List<Dashboard
V2Widget> - The list of widgets to display on the dashboard.
- layout
Type string - The layout type of the dashboard. Valid values are
ordered,free. - title string
- The title of the dashboard.
- dashboard
Lists number[] - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- dashboard
Lists number[]Removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- description string
- The description of the dashboard.
- is
Read booleanOnly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - notify
Lists string[] - The list of handles for the users to notify when changes are made to this dashboard.
- reflow
Type string - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - restricted
Roles string[] - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- tabs
Dashboard
V2Tab[] - List of tabs for organizing widgets.
- string[]
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - template
Variable DashboardPresets V2Template Variable Preset[] - The list of selectable template variable presets for this dashboard.
- template
Variables DashboardV2Template Variable[] - The list of template variables for this dashboard.
- url string
- The URL of the dashboard.
- widgets
Dashboard
V2Widget[] - The list of widgets to display on the dashboard.
- layout_
type str - The layout type of the dashboard. Valid values are
ordered,free. - title str
- The title of the dashboard.
- dashboard_
lists Sequence[int] - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- dashboard_
lists_ Sequence[int]removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- description str
- The description of the dashboard.
- is_
read_ boolonly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - notify_
lists Sequence[str] - The list of handles for the users to notify when changes are made to this dashboard.
- reflow_
type str - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - restricted_
roles Sequence[str] - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- tabs
Sequence[Dashboard
V2Tab Args] - List of tabs for organizing widgets.
- Sequence[str]
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - template_
variable_ Sequence[Dashboardpresets V2Template Variable Preset Args] - The list of selectable template variable presets for this dashboard.
- template_
variables Sequence[DashboardV2Template Variable Args] - The list of template variables for this dashboard.
- url str
- The URL of the dashboard.
- widgets
Sequence[Dashboard
V2Widget Args] - The list of widgets to display on the dashboard.
- layout
Type String - The layout type of the dashboard. Valid values are
ordered,free. - title String
- The title of the dashboard.
- dashboard
Lists List<Number> - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- dashboard
Lists List<Number>Removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- description String
- The description of the dashboard.
- is
Read BooleanOnly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - notify
Lists List<String> - The list of handles for the users to notify when changes are made to this dashboard.
- reflow
Type String - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - restricted
Roles List<String> - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- tabs List<Property Map>
- List of tabs for organizing widgets.
- List<String>
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - template
Variable List<Property Map>Presets - The list of selectable template variable presets for this dashboard.
- template
Variables List<Property Map> - The list of template variables for this dashboard.
- url String
- The URL of the dashboard.
- widgets List<Property Map>
- The list of widgets to display on the dashboard.
Outputs
All input properties are implicitly available as output properties. Additionally, the DashboardV2 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 DashboardV2 Resource
Get an existing DashboardV2 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?: DashboardV2State, opts?: CustomResourceOptions): DashboardV2@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dashboard_lists: Optional[Sequence[int]] = None,
dashboard_lists_removeds: Optional[Sequence[int]] = None,
description: Optional[str] = None,
is_read_only: Optional[bool] = None,
layout_type: Optional[str] = None,
notify_lists: Optional[Sequence[str]] = None,
reflow_type: Optional[str] = None,
restricted_roles: Optional[Sequence[str]] = None,
tabs: Optional[Sequence[DashboardV2TabArgs]] = None,
tags: Optional[Sequence[str]] = None,
template_variable_presets: Optional[Sequence[DashboardV2TemplateVariablePresetArgs]] = None,
template_variables: Optional[Sequence[DashboardV2TemplateVariableArgs]] = None,
title: Optional[str] = None,
url: Optional[str] = None,
widgets: Optional[Sequence[DashboardV2WidgetArgs]] = None) -> DashboardV2func GetDashboardV2(ctx *Context, name string, id IDInput, state *DashboardV2State, opts ...ResourceOption) (*DashboardV2, error)public static DashboardV2 Get(string name, Input<string> id, DashboardV2State? state, CustomResourceOptions? opts = null)public static DashboardV2 get(String name, Output<String> id, DashboardV2State state, CustomResourceOptions options)resources: _: type: datadog:DashboardV2 get: id: ${id}import {
to = datadog_dashboard_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.
- Dashboard
Lists List<int> - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- Dashboard
Lists List<int>Removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- Description string
- The description of the dashboard.
- Is
Read boolOnly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - Layout
Type string - The layout type of the dashboard. Valid values are
ordered,free. - Notify
Lists List<string> - The list of handles for the users to notify when changes are made to this dashboard.
- Reflow
Type string - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - Restricted
Roles List<string> - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- Tabs
List<Dashboard
V2Tab> - List of tabs for organizing widgets.
- List<string>
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - Template
Variable List<DashboardPresets V2Template Variable Preset> - The list of selectable template variable presets for this dashboard.
- Template
Variables List<DashboardV2Template Variable> - The list of template variables for this dashboard.
- Title string
- The title of the dashboard.
- Url string
- The URL of the dashboard.
- Widgets
List<Dashboard
V2Widget> - The list of widgets to display on the dashboard.
- Dashboard
Lists []int - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- Dashboard
Lists []intRemoveds - A list of dashboard lists this dashboard should be removed from. Internal only.
- Description string
- The description of the dashboard.
- Is
Read boolOnly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - Layout
Type string - The layout type of the dashboard. Valid values are
ordered,free. - Notify
Lists []string - The list of handles for the users to notify when changes are made to this dashboard.
- Reflow
Type string - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - Restricted
Roles []string - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- Tabs
[]Dashboard
V2Tab Args - List of tabs for organizing widgets.
- []string
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - Template
Variable []DashboardPresets V2Template Variable Preset Args - The list of selectable template variable presets for this dashboard.
- Template
Variables []DashboardV2Template Variable Args - The list of template variables for this dashboard.
- Title string
- The title of the dashboard.
- Url string
- The URL of the dashboard.
- Widgets
[]Dashboard
V2Widget Args - The list of widgets to display on the dashboard.
- dashboard_
lists list(number) - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- dashboard_
lists_ list(number)removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- description string
- The description of the dashboard.
- is_
read_ boolonly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - layout_
type string - The layout type of the dashboard. Valid values are
ordered,free. - notify_
lists list(string) - The list of handles for the users to notify when changes are made to this dashboard.
- reflow_
type string - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - restricted_
roles list(string) - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- tabs list(object)
- List of tabs for organizing widgets.
- list(string)
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - template_
variable_ list(object)presets - The list of selectable template variable presets for this dashboard.
- template_
variables list(object) - The list of template variables for this dashboard.
- title string
- The title of the dashboard.
- url string
- The URL of the dashboard.
- widgets list(object)
- The list of widgets to display on the dashboard.
- dashboard
Lists List<Integer> - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- dashboard
Lists List<Integer>Removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- description String
- The description of the dashboard.
- is
Read BooleanOnly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - layout
Type String - The layout type of the dashboard. Valid values are
ordered,free. - notify
Lists List<String> - The list of handles for the users to notify when changes are made to this dashboard.
- reflow
Type String - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - restricted
Roles List<String> - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- tabs
List<Dashboard
V2Tab> - List of tabs for organizing widgets.
- List<String>
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - template
Variable List<DashboardPresets V2Template Variable Preset> - The list of selectable template variable presets for this dashboard.
- template
Variables List<DashboardV2Template Variable> - The list of template variables for this dashboard.
- title String
- The title of the dashboard.
- url String
- The URL of the dashboard.
- widgets
List<Dashboard
V2Widget> - The list of widgets to display on the dashboard.
- dashboard
Lists number[] - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- dashboard
Lists number[]Removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- description string
- The description of the dashboard.
- is
Read booleanOnly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - layout
Type string - The layout type of the dashboard. Valid values are
ordered,free. - notify
Lists string[] - The list of handles for the users to notify when changes are made to this dashboard.
- reflow
Type string - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - restricted
Roles string[] - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- tabs
Dashboard
V2Tab[] - List of tabs for organizing widgets.
- string[]
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - template
Variable DashboardPresets V2Template Variable Preset[] - The list of selectable template variable presets for this dashboard.
- template
Variables DashboardV2Template Variable[] - The list of template variables for this dashboard.
- title string
- The title of the dashboard.
- url string
- The URL of the dashboard.
- widgets
Dashboard
V2Widget[] - The list of widgets to display on the dashboard.
- dashboard_
lists Sequence[int] - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- dashboard_
lists_ Sequence[int]removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- description str
- The description of the dashboard.
- is_
read_ boolonly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - layout_
type str - The layout type of the dashboard. Valid values are
ordered,free. - notify_
lists Sequence[str] - The list of handles for the users to notify when changes are made to this dashboard.
- reflow_
type str - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - restricted_
roles Sequence[str] - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- tabs
Sequence[Dashboard
V2Tab Args] - List of tabs for organizing widgets.
- Sequence[str]
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - template_
variable_ Sequence[Dashboardpresets V2Template Variable Preset Args] - The list of selectable template variable presets for this dashboard.
- template_
variables Sequence[DashboardV2Template Variable Args] - The list of template variables for this dashboard.
- title str
- The title of the dashboard.
- url str
- The URL of the dashboard.
- widgets
Sequence[Dashboard
V2Widget Args] - The list of widgets to display on the dashboard.
- dashboard
Lists List<Number> - A list of dashboard lists this dashboard belongs to. This attribute should not be set if managing the corresponding dashboard lists using Terraform as it causes inconsistent behavior.
- dashboard
Lists List<Number>Removeds - A list of dashboard lists this dashboard should be removed from. Internal only.
- description String
- The description of the dashboard.
- is
Read BooleanOnly - Whether this dashboard is read-only. Deprecated. This field is deprecated and non-functional. Use
restrictedRolesinstead to define which roles are required to edit the dashboard. Defaults tofalse. - layout
Type String - The layout type of the dashboard. Valid values are
ordered,free. - notify
Lists List<String> - The list of handles for the users to notify when changes are made to this dashboard.
- reflow
Type String - The reflow type of a new dashboard layout. Set this only when layout type is
ordered. If set tofixed, the dashboard expects all widgets to have a layout, and if it's set toauto, widgets should not have layouts. Valid values areauto,fixed. - restricted
Roles List<String> - A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
- tabs List<Property Map>
- List of tabs for organizing widgets.
- List<String>
- A list of tags assigned to the Dashboard. Only team names of the form
team:<name>are supported. - template
Variable List<Property Map>Presets - The list of selectable template variable presets for this dashboard.
- template
Variables List<Property Map> - The list of template variables for this dashboard.
- title String
- The title of the dashboard.
- url String
- The URL of the dashboard.
- widgets List<Property Map>
- The list of widgets to display on the dashboard.
Supporting Types
Note: There are over 1000 nested types for this resource. Only the first 1000 types are included in this documentation.
DashboardV2Tab, DashboardV2TabArgs
- name string
- The name of the tab.
- widget_
ids list(string) - List of widget references using @N format (1-indexed).
- id string
- The UUID of the tab.
- name str
- The name of the tab.
- widget_
ids Sequence[str] - List of widget references using @N format (1-indexed).
- id str
- The UUID of the tab.
DashboardV2TemplateVariable, DashboardV2TemplateVariableArgs
- Name string
- The name of the variable.
- Available
Values List<string> - The list of values that the template variable drop-down is limited to.
- Default string
- The default value for the template variable on dashboard load. Cannot be used in conjunction with
defaults. Deprecated. Usedefaultsinstead. - Defaults List<string>
- One or many default values for template variables on load. If more than one default is specified, they will be unioned together with
OR. Cannot be used in conjunction withdefault. - Prefix string
- The tag prefix associated with the variable. Only tags with this prefix appear in the variable dropdown.
- Type string
- The type of variable. This is to differentiate between filter variables (interpolated in query) and group by variables (interpolated into group by).
- Name string
- The name of the variable.
- Available
Values []string - The list of values that the template variable drop-down is limited to.
- Default string
- The default value for the template variable on dashboard load. Cannot be used in conjunction with
defaults. Deprecated. Usedefaultsinstead. - Defaults []string
- One or many default values for template variables on load. If more than one default is specified, they will be unioned together with
OR. Cannot be used in conjunction withdefault. - Prefix string
- The tag prefix associated with the variable. Only tags with this prefix appear in the variable dropdown.
- Type string
- The type of variable. This is to differentiate between filter variables (interpolated in query) and group by variables (interpolated into group by).
- name string
- The name of the variable.
- available_
values list(string) - The list of values that the template variable drop-down is limited to.
- default string
- The default value for the template variable on dashboard load. Cannot be used in conjunction with
defaults. Deprecated. Usedefaultsinstead. - defaults list(string)
- One or many default values for template variables on load. If more than one default is specified, they will be unioned together with
OR. Cannot be used in conjunction withdefault. - prefix string
- The tag prefix associated with the variable. Only tags with this prefix appear in the variable dropdown.
- type string
- The type of variable. This is to differentiate between filter variables (interpolated in query) and group by variables (interpolated into group by).
- name String
- The name of the variable.
- available
Values List<String> - The list of values that the template variable drop-down is limited to.
- default_ String
- The default value for the template variable on dashboard load. Cannot be used in conjunction with
defaults. Deprecated. Usedefaultsinstead. - defaults List<String>
- One or many default values for template variables on load. If more than one default is specified, they will be unioned together with
OR. Cannot be used in conjunction withdefault. - prefix String
- The tag prefix associated with the variable. Only tags with this prefix appear in the variable dropdown.
- type String
- The type of variable. This is to differentiate between filter variables (interpolated in query) and group by variables (interpolated into group by).
- name string
- The name of the variable.
- available
Values string[] - The list of values that the template variable drop-down is limited to.
- default string
- The default value for the template variable on dashboard load. Cannot be used in conjunction with
defaults. Deprecated. Usedefaultsinstead. - defaults string[]
- One or many default values for template variables on load. If more than one default is specified, they will be unioned together with
OR. Cannot be used in conjunction withdefault. - prefix string
- The tag prefix associated with the variable. Only tags with this prefix appear in the variable dropdown.
- type string
- The type of variable. This is to differentiate between filter variables (interpolated in query) and group by variables (interpolated into group by).
- name str
- The name of the variable.
- available_
values Sequence[str] - The list of values that the template variable drop-down is limited to.
- default str
- The default value for the template variable on dashboard load. Cannot be used in conjunction with
defaults. Deprecated. Usedefaultsinstead. - defaults Sequence[str]
- One or many default values for template variables on load. If more than one default is specified, they will be unioned together with
OR. Cannot be used in conjunction withdefault. - prefix str
- The tag prefix associated with the variable. Only tags with this prefix appear in the variable dropdown.
- type str
- The type of variable. This is to differentiate between filter variables (interpolated in query) and group by variables (interpolated into group by).
- name String
- The name of the variable.
- available
Values List<String> - The list of values that the template variable drop-down is limited to.
- default String
- The default value for the template variable on dashboard load. Cannot be used in conjunction with
defaults. Deprecated. Usedefaultsinstead. - defaults List<String>
- One or many default values for template variables on load. If more than one default is specified, they will be unioned together with
OR. Cannot be used in conjunction withdefault. - prefix String
- The tag prefix associated with the variable. Only tags with this prefix appear in the variable dropdown.
- type String
- The type of variable. This is to differentiate between filter variables (interpolated in query) and group by variables (interpolated into group by).
DashboardV2TemplateVariablePreset, DashboardV2TemplateVariablePresetArgs
- Name string
- The name of the preset.
- Template
Variables List<DashboardV2Template Variable Preset Template Variable> - The template variable names and assumed values under the given preset
- Name string
- The name of the preset.
- Template
Variables []DashboardV2Template Variable Preset Template Variable - The template variable names and assumed values under the given preset
- name string
- The name of the preset.
- template_
variables list(object) - The template variable names and assumed values under the given preset
- name String
- The name of the preset.
- template
Variables List<DashboardV2Template Variable Preset Template Variable> - The template variable names and assumed values under the given preset
- name string
- The name of the preset.
- template
Variables DashboardV2Template Variable Preset Template Variable[] - The template variable names and assumed values under the given preset
- name str
- The name of the preset.
- template_
variables Sequence[DashboardV2Template Variable Preset Template Variable] - The template variable names and assumed values under the given preset
- name String
- The name of the preset.
- template
Variables List<Property Map> - The template variable names and assumed values under the given preset
DashboardV2TemplateVariablePresetTemplateVariable, DashboardV2TemplateVariablePresetTemplateVariableArgs
- Name string
- The name of the template variable
- Value string
- The value that should be assumed by the template variable in this preset. Cannot be used in conjunction with
values. Deprecated. Usevaluesinstead. - Values List<string>
- One or many template variable values within the saved view, which will be unioned together using
ORif more than one is specified. Cannot be used in conjunction withvalue.
- Name string
- The name of the template variable
- Value string
- The value that should be assumed by the template variable in this preset. Cannot be used in conjunction with
values. Deprecated. Usevaluesinstead. - Values []string
- One or many template variable values within the saved view, which will be unioned together using
ORif more than one is specified. Cannot be used in conjunction withvalue.
- name string
- The name of the template variable
- value string
- The value that should be assumed by the template variable in this preset. Cannot be used in conjunction with
values. Deprecated. Usevaluesinstead. - values list(string)
- One or many template variable values within the saved view, which will be unioned together using
ORif more than one is specified. Cannot be used in conjunction withvalue.
- name String
- The name of the template variable
- value String
- The value that should be assumed by the template variable in this preset. Cannot be used in conjunction with
values. Deprecated. Usevaluesinstead. - values List<String>
- One or many template variable values within the saved view, which will be unioned together using
ORif more than one is specified. Cannot be used in conjunction withvalue.
- name string
- The name of the template variable
- value string
- The value that should be assumed by the template variable in this preset. Cannot be used in conjunction with
values. Deprecated. Usevaluesinstead. - values string[]
- One or many template variable values within the saved view, which will be unioned together using
ORif more than one is specified. Cannot be used in conjunction withvalue.
- name str
- The name of the template variable
- value str
- The value that should be assumed by the template variable in this preset. Cannot be used in conjunction with
values. Deprecated. Usevaluesinstead. - values Sequence[str]
- One or many template variable values within the saved view, which will be unioned together using
ORif more than one is specified. Cannot be used in conjunction withvalue.
- name String
- The name of the template variable
- value String
- The value that should be assumed by the template variable in this preset. Cannot be used in conjunction with
values. Deprecated. Usevaluesinstead. - values List<String>
- One or many template variable values within the saved view, which will be unioned together using
ORif more than one is specified. Cannot be used in conjunction withvalue.
DashboardV2Widget, DashboardV2WidgetArgs
- Alert
Graph DashboardDefinition V2Widget Alert Graph Definition - The definition for a Alert Graph widget.
- Alert
Value DashboardDefinition V2Widget Alert Value Definition - The definition for a Alert Value widget.
- Bar
Chart DashboardDefinition V2Widget Bar Chart Definition - The definition for a Bar Chart widget.
- Change
Definition DashboardV2Widget Change Definition - The definition for a Change widget.
- Check
Status DashboardDefinition V2Widget Check Status Definition - The definition for a Check Status widget.
- Distribution
Definition DashboardV2Widget Distribution Definition - The definition for a Distribution widget.
- Event
Stream DashboardDefinition V2Widget Event Stream Definition - The definition for a Event Stream widget.
- Event
Timeline DashboardDefinition V2Widget Event Timeline Definition - The definition for a Event Timeline widget.
- Free
Text DashboardDefinition V2Widget Free Text Definition - The definition for a Free Text widget.
- Funnel
Definition DashboardV2Widget Funnel Definition - The definition for a Funnel widget.
- Geomap
Definition DashboardV2Widget Geomap Definition - The definition for a Geomap widget.
- Group
Definition DashboardV2Widget Group Definition - The definition for a Group widget.
- Heatmap
Definition DashboardV2Widget Heatmap Definition - The definition for a Heatmap widget.
- Hostmap
Definition DashboardV2Widget Hostmap Definition - The definition for a Hostmap widget.
- Id int
- The ID of the widget.
- Iframe
Definition DashboardV2Widget Iframe Definition - The definition for an Iframe widget.
- Image
Definition DashboardV2Widget Image Definition - The definition for an Image widget
- List
Stream DashboardDefinition V2Widget List Stream Definition - The definition for a List Stream widget.
- Log
Stream DashboardDefinition V2Widget Log Stream Definition - The definition for an Log Stream widget.
- Manage
Status DashboardDefinition V2Widget Manage Status Definition - The definition for an Manage Status widget.
- Note
Definition DashboardV2Widget Note Definition - The definition for a Note widget.
- Point
Plot DashboardDefinition V2Widget Point Plot Definition - The definition for a Point Plot widget.
- Powerpack
Definition DashboardV2Widget Powerpack Definition - The definition for a Powerpack widget.
- Query
Table DashboardDefinition V2Widget Query Table Definition - The definition for a Query Table widget.
- Query
Value DashboardDefinition V2Widget Query Value Definition - The definition for a Query Value widget.
- Run
Workflow DashboardDefinition V2Widget Run Workflow Definition - The definition for a Run Workflow widget.
- Sankey
Definition DashboardV2Widget Sankey Definition - The definition for a Sankey diagram widget.
- Scatterplot
Definition DashboardV2Widget Scatterplot Definition - The definition for a Scatterplot widget.
- Service
Level DashboardObjective Definition V2Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- Servicemap
Definition DashboardV2Widget Servicemap Definition - The definition for a Service Map widget.
- Slo
List DashboardDefinition V2Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- Split
Graph DashboardDefinition V2Widget Split Graph Definition - The definition for a Split Graph widget.
- Sunburst
Definition DashboardV2Widget Sunburst Definition - The definition for a Sunburst widget.
- Timeseries
Definition DashboardV2Widget Timeseries Definition - The definition for a Timeseries widget.
- Toplist
Definition DashboardV2Widget Toplist Definition - The definition for a Toplist widget.
- Topology
Map DashboardDefinition V2Widget Topology Map Definition - The definition for a Topology Map widget.
- Trace
Service DashboardDefinition V2Widget Trace Service Definition - The definition for a Trace Service widget.
- Treemap
Definition DashboardV2Widget Treemap Definition - The definition for a Treemap widget.
- Widget
Layout DashboardV2Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- Wildcard
Definition DashboardV2Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- Alert
Graph DashboardDefinition V2Widget Alert Graph Definition - The definition for a Alert Graph widget.
- Alert
Value DashboardDefinition V2Widget Alert Value Definition - The definition for a Alert Value widget.
- Bar
Chart DashboardDefinition V2Widget Bar Chart Definition - The definition for a Bar Chart widget.
- Change
Definition DashboardV2Widget Change Definition - The definition for a Change widget.
- Check
Status DashboardDefinition V2Widget Check Status Definition - The definition for a Check Status widget.
- Distribution
Definition DashboardV2Widget Distribution Definition - The definition for a Distribution widget.
- Event
Stream DashboardDefinition V2Widget Event Stream Definition - The definition for a Event Stream widget.
- Event
Timeline DashboardDefinition V2Widget Event Timeline Definition - The definition for a Event Timeline widget.
- Free
Text DashboardDefinition V2Widget Free Text Definition - The definition for a Free Text widget.
- Funnel
Definition DashboardV2Widget Funnel Definition - The definition for a Funnel widget.
- Geomap
Definition DashboardV2Widget Geomap Definition - The definition for a Geomap widget.
- Group
Definition DashboardV2Widget Group Definition - The definition for a Group widget.
- Heatmap
Definition DashboardV2Widget Heatmap Definition - The definition for a Heatmap widget.
- Hostmap
Definition DashboardV2Widget Hostmap Definition - The definition for a Hostmap widget.
- Id int
- The ID of the widget.
- Iframe
Definition DashboardV2Widget Iframe Definition - The definition for an Iframe widget.
- Image
Definition DashboardV2Widget Image Definition - The definition for an Image widget
- List
Stream DashboardDefinition V2Widget List Stream Definition - The definition for a List Stream widget.
- Log
Stream DashboardDefinition V2Widget Log Stream Definition - The definition for an Log Stream widget.
- Manage
Status DashboardDefinition V2Widget Manage Status Definition - The definition for an Manage Status widget.
- Note
Definition DashboardV2Widget Note Definition - The definition for a Note widget.
- Point
Plot DashboardDefinition V2Widget Point Plot Definition - The definition for a Point Plot widget.
- Powerpack
Definition DashboardV2Widget Powerpack Definition - The definition for a Powerpack widget.
- Query
Table DashboardDefinition V2Widget Query Table Definition - The definition for a Query Table widget.
- Query
Value DashboardDefinition V2Widget Query Value Definition - The definition for a Query Value widget.
- Run
Workflow DashboardDefinition V2Widget Run Workflow Definition - The definition for a Run Workflow widget.
- Sankey
Definition DashboardV2Widget Sankey Definition - The definition for a Sankey diagram widget.
- Scatterplot
Definition DashboardV2Widget Scatterplot Definition - The definition for a Scatterplot widget.
- Service
Level DashboardObjective Definition V2Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- Servicemap
Definition DashboardV2Widget Servicemap Definition - The definition for a Service Map widget.
- Slo
List DashboardDefinition V2Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- Split
Graph DashboardDefinition V2Widget Split Graph Definition - The definition for a Split Graph widget.
- Sunburst
Definition DashboardV2Widget Sunburst Definition - The definition for a Sunburst widget.
- Timeseries
Definition DashboardV2Widget Timeseries Definition - The definition for a Timeseries widget.
- Toplist
Definition DashboardV2Widget Toplist Definition - The definition for a Toplist widget.
- Topology
Map DashboardDefinition V2Widget Topology Map Definition - The definition for a Topology Map widget.
- Trace
Service DashboardDefinition V2Widget Trace Service Definition - The definition for a Trace Service widget.
- Treemap
Definition DashboardV2Widget Treemap Definition - The definition for a Treemap widget.
- Widget
Layout DashboardV2Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- Wildcard
Definition DashboardV2Widget 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.
- powerpack_
definition object - The definition for a Powerpack 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.
- split_
graph_ objectdefinition - The definition for a Split Graph 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 DashboardDefinition V2Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert
Value DashboardDefinition V2Widget Alert Value Definition - The definition for a Alert Value widget.
- bar
Chart DashboardDefinition V2Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change
Definition DashboardV2Widget Change Definition - The definition for a Change widget.
- check
Status DashboardDefinition V2Widget Check Status Definition - The definition for a Check Status widget.
- distribution
Definition DashboardV2Widget Distribution Definition - The definition for a Distribution widget.
- event
Stream DashboardDefinition V2Widget Event Stream Definition - The definition for a Event Stream widget.
- event
Timeline DashboardDefinition V2Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free
Text DashboardDefinition V2Widget Free Text Definition - The definition for a Free Text widget.
- funnel
Definition DashboardV2Widget Funnel Definition - The definition for a Funnel widget.
- geomap
Definition DashboardV2Widget Geomap Definition - The definition for a Geomap widget.
- group
Definition DashboardV2Widget Group Definition - The definition for a Group widget.
- heatmap
Definition DashboardV2Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap
Definition DashboardV2Widget Hostmap Definition - The definition for a Hostmap widget.
- id Integer
- The ID of the widget.
- iframe
Definition DashboardV2Widget Iframe Definition - The definition for an Iframe widget.
- image
Definition DashboardV2Widget Image Definition - The definition for an Image widget
- list
Stream DashboardDefinition V2Widget List Stream Definition - The definition for a List Stream widget.
- log
Stream DashboardDefinition V2Widget Log Stream Definition - The definition for an Log Stream widget.
- manage
Status DashboardDefinition V2Widget Manage Status Definition - The definition for an Manage Status widget.
- note
Definition DashboardV2Widget Note Definition - The definition for a Note widget.
- point
Plot DashboardDefinition V2Widget Point Plot Definition - The definition for a Point Plot widget.
- powerpack
Definition DashboardV2Widget Powerpack Definition - The definition for a Powerpack widget.
- query
Table DashboardDefinition V2Widget Query Table Definition - The definition for a Query Table widget.
- query
Value DashboardDefinition V2Widget Query Value Definition - The definition for a Query Value widget.
- run
Workflow DashboardDefinition V2Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey
Definition DashboardV2Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot
Definition DashboardV2Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service
Level DashboardObjective Definition V2Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap
Definition DashboardV2Widget Servicemap Definition - The definition for a Service Map widget.
- slo
List DashboardDefinition V2Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- split
Graph DashboardDefinition V2Widget Split Graph Definition - The definition for a Split Graph widget.
- sunburst
Definition DashboardV2Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries
Definition DashboardV2Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist
Definition DashboardV2Widget Toplist Definition - The definition for a Toplist widget.
- topology
Map DashboardDefinition V2Widget Topology Map Definition - The definition for a Topology Map widget.
- trace
Service DashboardDefinition V2Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap
Definition DashboardV2Widget Treemap Definition - The definition for a Treemap widget.
- widget
Layout DashboardV2Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard
Definition DashboardV2Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert
Graph DashboardDefinition V2Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert
Value DashboardDefinition V2Widget Alert Value Definition - The definition for a Alert Value widget.
- bar
Chart DashboardDefinition V2Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change
Definition DashboardV2Widget Change Definition - The definition for a Change widget.
- check
Status DashboardDefinition V2Widget Check Status Definition - The definition for a Check Status widget.
- distribution
Definition DashboardV2Widget Distribution Definition - The definition for a Distribution widget.
- event
Stream DashboardDefinition V2Widget Event Stream Definition - The definition for a Event Stream widget.
- event
Timeline DashboardDefinition V2Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free
Text DashboardDefinition V2Widget Free Text Definition - The definition for a Free Text widget.
- funnel
Definition DashboardV2Widget Funnel Definition - The definition for a Funnel widget.
- geomap
Definition DashboardV2Widget Geomap Definition - The definition for a Geomap widget.
- group
Definition DashboardV2Widget Group Definition - The definition for a Group widget.
- heatmap
Definition DashboardV2Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap
Definition DashboardV2Widget Hostmap Definition - The definition for a Hostmap widget.
- id number
- The ID of the widget.
- iframe
Definition DashboardV2Widget Iframe Definition - The definition for an Iframe widget.
- image
Definition DashboardV2Widget Image Definition - The definition for an Image widget
- list
Stream DashboardDefinition V2Widget List Stream Definition - The definition for a List Stream widget.
- log
Stream DashboardDefinition V2Widget Log Stream Definition - The definition for an Log Stream widget.
- manage
Status DashboardDefinition V2Widget Manage Status Definition - The definition for an Manage Status widget.
- note
Definition DashboardV2Widget Note Definition - The definition for a Note widget.
- point
Plot DashboardDefinition V2Widget Point Plot Definition - The definition for a Point Plot widget.
- powerpack
Definition DashboardV2Widget Powerpack Definition - The definition for a Powerpack widget.
- query
Table DashboardDefinition V2Widget Query Table Definition - The definition for a Query Table widget.
- query
Value DashboardDefinition V2Widget Query Value Definition - The definition for a Query Value widget.
- run
Workflow DashboardDefinition V2Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey
Definition DashboardV2Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot
Definition DashboardV2Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service
Level DashboardObjective Definition V2Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap
Definition DashboardV2Widget Servicemap Definition - The definition for a Service Map widget.
- slo
List DashboardDefinition V2Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- split
Graph DashboardDefinition V2Widget Split Graph Definition - The definition for a Split Graph widget.
- sunburst
Definition DashboardV2Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries
Definition DashboardV2Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist
Definition DashboardV2Widget Toplist Definition - The definition for a Toplist widget.
- topology
Map DashboardDefinition V2Widget Topology Map Definition - The definition for a Topology Map widget.
- trace
Service DashboardDefinition V2Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap
Definition DashboardV2Widget Treemap Definition - The definition for a Treemap widget.
- widget
Layout DashboardV2Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard
Definition DashboardV2Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert_
graph_ Dashboarddefinition V2Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert_
value_ Dashboarddefinition V2Widget Alert Value Definition - The definition for a Alert Value widget.
- bar_
chart_ Dashboarddefinition V2Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change_
definition DashboardV2Widget Change Definition - The definition for a Change widget.
- check_
status_ Dashboarddefinition V2Widget Check Status Definition - The definition for a Check Status widget.
- distribution_
definition DashboardV2Widget Distribution Definition - The definition for a Distribution widget.
- event_
stream_ Dashboarddefinition V2Widget Event Stream Definition - The definition for a Event Stream widget.
- event_
timeline_ Dashboarddefinition V2Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free_
text_ Dashboarddefinition V2Widget Free Text Definition - The definition for a Free Text widget.
- funnel_
definition DashboardV2Widget Funnel Definition - The definition for a Funnel widget.
- geomap_
definition DashboardV2Widget Geomap Definition - The definition for a Geomap widget.
- group_
definition DashboardV2Widget Group Definition - The definition for a Group widget.
- heatmap_
definition DashboardV2Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap_
definition DashboardV2Widget Hostmap Definition - The definition for a Hostmap widget.
- id int
- The ID of the widget.
- iframe_
definition DashboardV2Widget Iframe Definition - The definition for an Iframe widget.
- image_
definition DashboardV2Widget Image Definition - The definition for an Image widget
- list_
stream_ Dashboarddefinition V2Widget List Stream Definition - The definition for a List Stream widget.
- log_
stream_ Dashboarddefinition V2Widget Log Stream Definition - The definition for an Log Stream widget.
- manage_
status_ Dashboarddefinition V2Widget Manage Status Definition - The definition for an Manage Status widget.
- note_
definition DashboardV2Widget Note Definition - The definition for a Note widget.
- point_
plot_ Dashboarddefinition V2Widget Point Plot Definition - The definition for a Point Plot widget.
- powerpack_
definition DashboardV2Widget Powerpack Definition - The definition for a Powerpack widget.
- query_
table_ Dashboarddefinition V2Widget Query Table Definition - The definition for a Query Table widget.
- query_
value_ Dashboarddefinition V2Widget Query Value Definition - The definition for a Query Value widget.
- run_
workflow_ Dashboarddefinition V2Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey_
definition DashboardV2Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot_
definition DashboardV2Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service_
level_ Dashboardobjective_ definition V2Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap_
definition DashboardV2Widget Servicemap Definition - The definition for a Service Map widget.
- slo_
list_ Dashboarddefinition V2Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- split_
graph_ Dashboarddefinition V2Widget Split Graph Definition - The definition for a Split Graph widget.
- sunburst_
definition DashboardV2Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries_
definition DashboardV2Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist_
definition DashboardV2Widget Toplist Definition - The definition for a Toplist widget.
- topology_
map_ Dashboarddefinition V2Widget Topology Map Definition - The definition for a Topology Map widget.
- trace_
service_ Dashboarddefinition V2Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap_
definition DashboardV2Widget Treemap Definition - The definition for a Treemap widget.
- widget_
layout DashboardV2Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard_
definition DashboardV2Widget 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.
- powerpack
Definition Property Map - The definition for a Powerpack 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.
- split
Graph Property MapDefinition - The definition for a Split Graph 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.
DashboardV2WidgetAlertGraphDefinition, DashboardV2WidgetAlertGraphDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetAlertGraphDefinitionTime, DashboardV2WidgetAlertGraphDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetAlertGraphDefinitionTimeFixed, DashboardV2WidgetAlertGraphDefinitionTimeFixedArgs
DashboardV2WidgetAlertGraphDefinitionTimeLive, DashboardV2WidgetAlertGraphDefinitionTimeLiveArgs
DashboardV2WidgetAlertValueDefinition, DashboardV2WidgetAlertValueDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetAlertValueDefinitionTime, DashboardV2WidgetAlertValueDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetAlertValueDefinitionTimeFixed, DashboardV2WidgetAlertValueDefinitionTimeFixedArgs
DashboardV2WidgetAlertValueDefinitionTimeLive, DashboardV2WidgetAlertValueDefinitionTimeLiveArgs
DashboardV2WidgetBarChartDefinition, DashboardV2WidgetBarChartDefinitionArgs
- Custom
Links List<DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- Style
Dashboard
V2Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- Time
Dashboard
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 []DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- Style
Dashboard
V2Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- Time
Dashboard
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<DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Dashboard
V2Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Dashboard
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 DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Dashboard
V2Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Dashboard
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[DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Dashboard
V2Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Dashboard
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).
DashboardV2WidgetBarChartDefinitionCustomLink, DashboardV2WidgetBarChartDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequest, DashboardV2WidgetBarChartDefinitionRequestArgs
- Apm
Query DashboardV2Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Conditional
Formats List<DashboardV2Widget 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<Dashboard
V2Widget Bar Chart Definition Request Formula> - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
V2Widget Bar Chart Definition Request Query> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Dashboard
V2Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Dashboard
V2Widget Bar Chart Definition Request Style - Define request for the widget's style.
- Apm
Query DashboardV2Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Conditional
Formats []DashboardV2Widget 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
[]Dashboard
V2Widget Bar Chart Definition Request Formula - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
V2Widget Bar Chart Definition Request Query - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Dashboard
V2Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Dashboard
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 DashboardV2Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats List<DashboardV2Widget 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<Dashboard
V2Widget Bar Chart Definition Request Formula> - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
V2Widget Bar Chart Definition Request Query> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Dashboard
V2Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Dashboard
V2Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm
Query DashboardV2Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request Formula[] - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request Query[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Dashboard
V2Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Dashboard
V2Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm_
query DashboardV2Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional_
formats Sequence[DashboardV2Widget 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[Dashboard
V2Widget Bar Chart Definition Request Formula] - A list of formulas to use in the widget.
- log_
query DashboardV2Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
V2Widget Bar Chart Definition Request Query] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Dashboard
V2Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Dashboard
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.
DashboardV2WidgetBarChartDefinitionRequestApmQuery, DashboardV2WidgetBarChartDefinitionRequestApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Bar Chart Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Bar Chart Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Bar Chart Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Bar Chart Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Bar Chart Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestApmQueryComputeQuery, DashboardV2WidgetBarChartDefinitionRequestApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetBarChartDefinitionRequestApmQueryGroupBy, DashboardV2WidgetBarChartDefinitionRequestApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestApmQueryGroupBySortQuery, DashboardV2WidgetBarChartDefinitionRequestApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetBarChartDefinitionRequestApmQueryMultiCompute, DashboardV2WidgetBarChartDefinitionRequestApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetBarChartDefinitionRequestConditionalFormat, DashboardV2WidgetBarChartDefinitionRequestConditionalFormatArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestFormula, DashboardV2WidgetBarChartDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetBarChartDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetBarChartDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestFormulaLimit, DashboardV2WidgetBarChartDefinitionRequestFormulaLimitArgs
DashboardV2WidgetBarChartDefinitionRequestFormulaNumberFormat, DashboardV2WidgetBarChartDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
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)
DashboardV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetBarChartDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestFormulaStyle, DashboardV2WidgetBarChartDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestLogQuery, DashboardV2WidgetBarChartDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Bar Chart Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Bar Chart Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Bar Chart Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Bar Chart Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Bar Chart Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetBarChartDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetBarChartDefinitionRequestLogQueryGroupBy, DashboardV2WidgetBarChartDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetBarChartDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetBarChartDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetBarChartDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetBarChartDefinitionRequestProcessQuery, DashboardV2WidgetBarChartDefinitionRequestProcessQueryArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestQuery, DashboardV2WidgetBarChartDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats Query V2Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats Query V2Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats Query V2Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats Query V2Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ query V2Widget Bar Chart Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Dashboardstats_ query V2Widget Bar Chart Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Dashboardquery V2Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetBarChartDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetBarChartDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetBarChartDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestQueryEventQuery, DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Bar Chart Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
V2Widget Bar Chart Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Dashboard
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 []DashboardV2Widget Bar Chart Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Bar Chart Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
V2Widget Bar Chart Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Dashboard
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 DashboardV2Widget Bar Chart Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
V2Widget Bar Chart Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Dashboard
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[DashboardV2Widget Bar Chart Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetBarChartDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetBarChartDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetBarChartDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestQueryMetricQuery, DashboardV2WidgetBarChartDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestQueryProcessQuery, DashboardV2WidgetBarChartDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetBarChartDefinitionRequestQuerySloQuery, DashboardV2WidgetBarChartDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetBarChartDefinitionRequestRumQuery, DashboardV2WidgetBarChartDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Bar Chart Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Bar Chart Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Bar Chart Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Bar Chart Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Bar Chart Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetBarChartDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetBarChartDefinitionRequestRumQueryGroupBy, DashboardV2WidgetBarChartDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetBarChartDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetBarChartDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetBarChartDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetBarChartDefinitionRequestSecurityQuery, DashboardV2WidgetBarChartDefinitionRequestSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Bar Chart Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Bar Chart Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Bar Chart Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Bar Chart Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Bar Chart Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestSecurityQueryComputeQuery, DashboardV2WidgetBarChartDefinitionRequestSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetBarChartDefinitionRequestSecurityQueryGroupBy, DashboardV2WidgetBarChartDefinitionRequestSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery, DashboardV2WidgetBarChartDefinitionRequestSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetBarChartDefinitionRequestSecurityQueryMultiCompute, DashboardV2WidgetBarChartDefinitionRequestSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetBarChartDefinitionRequestSort, DashboardV2WidgetBarChartDefinitionRequestSortArgs
- Count int
- The number of items to limit the widget to.
- Order
Bies List<DashboardV2Widget 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 []DashboardV2Widget 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<DashboardV2Widget 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 DashboardV2Widget 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[DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestSortOrderBy, DashboardV2WidgetBarChartDefinitionRequestSortOrderByArgs
- Formula
Sort DashboardV2Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- Group
Sort DashboardV2Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- Formula
Sort DashboardV2Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- Group
Sort DashboardV2Widget 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 DashboardV2Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group
Sort DashboardV2Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula
Sort DashboardV2Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group
Sort DashboardV2Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula_
sort DashboardV2Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group_
sort DashboardV2Widget 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.
DashboardV2WidgetBarChartDefinitionRequestSortOrderByFormulaSort, DashboardV2WidgetBarChartDefinitionRequestSortOrderByFormulaSortArgs
DashboardV2WidgetBarChartDefinitionRequestSortOrderByGroupSort, DashboardV2WidgetBarChartDefinitionRequestSortOrderByGroupSortArgs
DashboardV2WidgetBarChartDefinitionRequestStyle, DashboardV2WidgetBarChartDefinitionRequestStyleArgs
DashboardV2WidgetBarChartDefinitionStyle, DashboardV2WidgetBarChartDefinitionStyleArgs
- Display
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetBarChartDefinitionStyleDisplay, DashboardV2WidgetBarChartDefinitionStyleDisplayArgs
- Flat
Dashboard
V2Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- Stacked
Dashboard
V2Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- Flat
Dashboard
V2Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- Stacked
Dashboard
V2Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Dashboard
V2Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Dashboard
V2Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Dashboard
V2Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Dashboard
V2Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Dashboard
V2Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Dashboard
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.
DashboardV2WidgetBarChartDefinitionStyleDisplayStacked, DashboardV2WidgetBarChartDefinitionStyleDisplayStackedArgs
- 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.
DashboardV2WidgetBarChartDefinitionTime, DashboardV2WidgetBarChartDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetBarChartDefinitionTimeFixed, DashboardV2WidgetBarChartDefinitionTimeFixedArgs
DashboardV2WidgetBarChartDefinitionTimeLive, DashboardV2WidgetBarChartDefinitionTimeLiveArgs
DashboardV2WidgetChangeDefinition, DashboardV2WidgetChangeDefinitionArgs
- Custom
Links List<DashboardV2Widget 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<Dashboard
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
Dashboard
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 []DashboardV2Widget 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
[]Dashboard
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
Dashboard
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<DashboardV2Widget 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<Dashboard
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
Dashboard
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 DashboardV2Widget 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
Dashboard
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
Dashboard
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[DashboardV2Widget 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[Dashboard
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
Dashboard
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).
DashboardV2WidgetChangeDefinitionCustomLink, DashboardV2WidgetChangeDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetChangeDefinitionRequest, DashboardV2WidgetChangeDefinitionRequestArgs
- Apm
Query DashboardV2Widget 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<Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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<Dashboard
V2Widget Change Definition Request Query> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget 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
[]Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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
[]Dashboard
V2Widget Change Definition Request Query - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget 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<Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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<Dashboard
V2Widget Change Definition Request Query> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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 DashboardV2Widget 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
Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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
Dashboard
V2Widget Change Definition Request Query[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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 DashboardV2Widget 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[Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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[Dashboard
V2Widget Change Definition Request Query] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestApmQuery, DashboardV2WidgetChangeDefinitionRequestApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Change Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Change Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Change Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Change Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Change Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestApmQueryComputeQuery, DashboardV2WidgetChangeDefinitionRequestApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetChangeDefinitionRequestApmQueryGroupBy, DashboardV2WidgetChangeDefinitionRequestApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestApmQueryGroupBySortQuery, DashboardV2WidgetChangeDefinitionRequestApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetChangeDefinitionRequestApmQueryMultiCompute, DashboardV2WidgetChangeDefinitionRequestApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetChangeDefinitionRequestFormula, DashboardV2WidgetChangeDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Change Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode Options V2Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []DashboardV2Widget 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
Dashboard
V2Widget Change Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode Options V2Widget Change Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats DashboardV2Widget 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
Dashboard
V2Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetChangeDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetChangeDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestFormulaLimit, DashboardV2WidgetChangeDefinitionRequestFormulaLimitArgs
DashboardV2WidgetChangeDefinitionRequestFormulaNumberFormat, DashboardV2WidgetChangeDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Dashboard
V2Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Dashboard
V2Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
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)
DashboardV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetChangeDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestFormulaStyle, DashboardV2WidgetChangeDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestLogQuery, DashboardV2WidgetChangeDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Change Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Change Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Change Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Change Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Change Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetChangeDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetChangeDefinitionRequestLogQueryGroupBy, DashboardV2WidgetChangeDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetChangeDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetChangeDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetChangeDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetChangeDefinitionRequestProcessQuery, DashboardV2WidgetChangeDefinitionRequestProcessQueryArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestQuery, DashboardV2WidgetChangeDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats Query V2Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats Query V2Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats Query V2Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats Query V2Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ query V2Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Dashboardstats_ query V2Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Dashboardquery V2Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetChangeDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetChangeDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetChangeDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestQueryEventQuery, DashboardV2WidgetChangeDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Change Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
V2Widget Change Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Dashboard
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 []DashboardV2Widget Change Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Change Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
V2Widget Change Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Dashboard
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 DashboardV2Widget Change Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
V2Widget Change Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Dashboard
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[DashboardV2Widget Change Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetChangeDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetChangeDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetChangeDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetChangeDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetChangeDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetChangeDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetChangeDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestQueryMetricQuery, DashboardV2WidgetChangeDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestQueryProcessQuery, DashboardV2WidgetChangeDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetChangeDefinitionRequestQuerySloQuery, DashboardV2WidgetChangeDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetChangeDefinitionRequestRumQuery, DashboardV2WidgetChangeDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Change Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Change Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Change Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Change Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Change Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetChangeDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetChangeDefinitionRequestRumQueryGroupBy, DashboardV2WidgetChangeDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetChangeDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetChangeDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetChangeDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetChangeDefinitionRequestSecurityQuery, DashboardV2WidgetChangeDefinitionRequestSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Change Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Change Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Change Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Change Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Change Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestSecurityQueryComputeQuery, DashboardV2WidgetChangeDefinitionRequestSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetChangeDefinitionRequestSecurityQueryGroupBy, DashboardV2WidgetChangeDefinitionRequestSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery, DashboardV2WidgetChangeDefinitionRequestSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetChangeDefinitionRequestSecurityQueryMultiCompute, DashboardV2WidgetChangeDefinitionRequestSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetChangeDefinitionTime, DashboardV2WidgetChangeDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetChangeDefinitionTimeFixed, DashboardV2WidgetChangeDefinitionTimeFixedArgs
DashboardV2WidgetChangeDefinitionTimeLive, DashboardV2WidgetChangeDefinitionTimeLiveArgs
DashboardV2WidgetCheckStatusDefinition, DashboardV2WidgetCheckStatusDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetCheckStatusDefinitionTime, DashboardV2WidgetCheckStatusDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetCheckStatusDefinitionTimeFixed, DashboardV2WidgetCheckStatusDefinitionTimeFixedArgs
DashboardV2WidgetCheckStatusDefinitionTimeLive, DashboardV2WidgetCheckStatusDefinitionTimeLiveArgs
DashboardV2WidgetDistributionDefinition, DashboardV2WidgetDistributionDefinitionArgs
- 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<Dashboard
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<Dashboard
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
Dashboard
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
Dashboard
V2Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- Yaxis
Dashboard
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
[]Dashboard
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
[]Dashboard
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
Dashboard
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
Dashboard
V2Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- Yaxis
Dashboard
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<Dashboard
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<Dashboard
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
Dashboard
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
Dashboard
V2Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
V2Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Dashboard
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[Dashboard
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[Dashboard
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
Dashboard
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
Dashboard
V2Widget Distribution Definition Xaxis - A nested block describing the X-Axis Controls. Exactly one nested block is allowed using the structure below.
- yaxis
Dashboard
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.
DashboardV2WidgetDistributionDefinitionMarker, DashboardV2WidgetDistributionDefinitionMarkerArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequest, DashboardV2WidgetDistributionDefinitionRequestArgs
- Apm
Query DashboardV2Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats DashboardQuery V2Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- Formulas
List<Dashboard
V2Widget Distribution Definition Request Formula> - A list of formulas to use in the widget.
- Histogram
Query DashboardV2Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- Log
Query DashboardV2Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
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 DashboardV2Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Dashboard
V2Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- Apm
Query DashboardV2Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats DashboardQuery V2Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- Formulas
[]Dashboard
V2Widget Distribution Definition Request Formula - A list of formulas to use in the widget.
- Histogram
Query DashboardV2Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- Log
Query DashboardV2Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
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 DashboardV2Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Dashboard
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 DashboardV2Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats DashboardQuery V2Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
List<Dashboard
V2Widget Distribution Definition Request Formula> - A list of formulas to use in the widget.
- histogram
Query DashboardV2Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log
Query DashboardV2Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
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 DashboardV2Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Dashboard
V2Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm
Query DashboardV2Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats DashboardQuery V2Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
Dashboard
V2Widget Distribution Definition Request Formula[] - A list of formulas to use in the widget.
- histogram
Query DashboardV2Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log
Query DashboardV2Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
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 DashboardV2Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Dashboard
V2Widget Distribution Definition Request Style - The style of the widget graph. One nested block is allowed using the structure below.
- apm_
query DashboardV2Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
stats_ Dashboardquery V2Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
Sequence[Dashboard
V2Widget Distribution Definition Request Formula] - A list of formulas to use in the widget.
- histogram_
query DashboardV2Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log_
query DashboardV2Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
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 DashboardV2Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Dashboard
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.
DashboardV2WidgetDistributionDefinitionRequestApmQuery, DashboardV2WidgetDistributionDefinitionRequestApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Distribution Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Distribution Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Distribution Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Distribution Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Distribution Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestApmQueryComputeQuery, DashboardV2WidgetDistributionDefinitionRequestApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetDistributionDefinitionRequestApmQueryGroupBy, DashboardV2WidgetDistributionDefinitionRequestApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestApmQueryGroupBySortQuery, DashboardV2WidgetDistributionDefinitionRequestApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetDistributionDefinitionRequestApmQueryMultiCompute, DashboardV2WidgetDistributionDefinitionRequestApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetDistributionDefinitionRequestApmStatsQuery, DashboardV2WidgetDistributionDefinitionRequestApmStatsQueryArgs
- 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<Dashboard
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
[]Dashboard
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<Dashboard
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
Dashboard
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[Dashboard
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.
DashboardV2WidgetDistributionDefinitionRequestApmStatsQueryColumn, DashboardV2WidgetDistributionDefinitionRequestApmStatsQueryColumnArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestFormula, DashboardV2WidgetDistributionDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode Options V2Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []DashboardV2Widget 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
Dashboard
V2Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode Options V2Widget Distribution Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats DashboardV2Widget 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
Dashboard
V2Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetDistributionDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetDistributionDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestFormulaLimit, DashboardV2WidgetDistributionDefinitionRequestFormulaLimitArgs
DashboardV2WidgetDistributionDefinitionRequestFormulaNumberFormat, DashboardV2WidgetDistributionDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Distribution Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
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)
DashboardV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetDistributionDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestFormulaStyle, DashboardV2WidgetDistributionDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestHistogramQuery, DashboardV2WidgetDistributionDefinitionRequestHistogramQueryArgs
- Apm
Resource DashboardStats Query V2Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- Event
Query DashboardV2Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- Metric
Query DashboardV2Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- Apm
Resource DashboardStats Query V2Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- Event
Query DashboardV2Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- Metric
Query DashboardV2Widget 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 DashboardStats Query V2Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event
Query DashboardV2Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric
Query DashboardV2Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm
Resource DashboardStats Query V2Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event
Query DashboardV2Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric
Query DashboardV2Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm_
resource_ Dashboardstats_ query V2Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event_
query DashboardV2Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric_
query DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQuery, DashboardV2WidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQuery, DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Distribution Definition Request Histogram Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
V2Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Dashboard
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 []DashboardV2Widget Distribution Definition Request Histogram Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Distribution Definition Request Histogram Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
V2Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Dashboard
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 DashboardV2Widget Distribution Definition Request Histogram Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
V2Widget Distribution Definition Request Histogram Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Dashboard
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[DashboardV2Widget Distribution Definition Request Histogram Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute, DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy, DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields, DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort, DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort, DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch, DashboardV2WidgetDistributionDefinitionRequestHistogramQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestHistogramQueryMetricQuery, DashboardV2WidgetDistributionDefinitionRequestHistogramQueryMetricQueryArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestLogQuery, DashboardV2WidgetDistributionDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Distribution Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Distribution Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Distribution Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Distribution Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Distribution Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetDistributionDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetDistributionDefinitionRequestLogQueryGroupBy, DashboardV2WidgetDistributionDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetDistributionDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetDistributionDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetDistributionDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetDistributionDefinitionRequestProcessQuery, DashboardV2WidgetDistributionDefinitionRequestProcessQueryArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestQuery, DashboardV2WidgetDistributionDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats Query V2Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats Query V2Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats Query V2Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats Query V2Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ query V2Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Dashboardstats_ query V2Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Dashboardquery V2Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetDistributionDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetDistributionDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetDistributionDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestQueryEventQuery, DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Distribution Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
V2Widget Distribution Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Dashboard
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 []DashboardV2Widget Distribution Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Distribution Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
V2Widget Distribution Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Dashboard
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 DashboardV2Widget Distribution Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
V2Widget Distribution Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Dashboard
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[DashboardV2Widget Distribution Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetDistributionDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetDistributionDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetDistributionDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestQueryMetricQuery, DashboardV2WidgetDistributionDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestQueryProcessQuery, DashboardV2WidgetDistributionDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetDistributionDefinitionRequestQuerySloQuery, DashboardV2WidgetDistributionDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetDistributionDefinitionRequestRumQuery, DashboardV2WidgetDistributionDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Distribution Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Distribution Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Distribution Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Distribution Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Distribution Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetDistributionDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetDistributionDefinitionRequestRumQueryGroupBy, DashboardV2WidgetDistributionDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetDistributionDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetDistributionDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetDistributionDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetDistributionDefinitionRequestSecurityQuery, DashboardV2WidgetDistributionDefinitionRequestSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Distribution Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Distribution Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Distribution Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Distribution Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Distribution Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestSecurityQueryComputeQuery, DashboardV2WidgetDistributionDefinitionRequestSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetDistributionDefinitionRequestSecurityQueryGroupBy, DashboardV2WidgetDistributionDefinitionRequestSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery, DashboardV2WidgetDistributionDefinitionRequestSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetDistributionDefinitionRequestSecurityQueryMultiCompute, DashboardV2WidgetDistributionDefinitionRequestSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetDistributionDefinitionRequestStyle, DashboardV2WidgetDistributionDefinitionRequestStyleArgs
DashboardV2WidgetDistributionDefinitionTime, DashboardV2WidgetDistributionDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetDistributionDefinitionTimeFixed, DashboardV2WidgetDistributionDefinitionTimeFixedArgs
DashboardV2WidgetDistributionDefinitionTimeLive, DashboardV2WidgetDistributionDefinitionTimeLiveArgs
DashboardV2WidgetDistributionDefinitionXaxis, DashboardV2WidgetDistributionDefinitionXaxisArgs
- 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.
DashboardV2WidgetDistributionDefinitionYaxis, DashboardV2WidgetDistributionDefinitionYaxisArgs
- 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.
DashboardV2WidgetEventStreamDefinition, DashboardV2WidgetEventStreamDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetEventStreamDefinitionTime, DashboardV2WidgetEventStreamDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetEventStreamDefinitionTimeFixed, DashboardV2WidgetEventStreamDefinitionTimeFixedArgs
DashboardV2WidgetEventStreamDefinitionTimeLive, DashboardV2WidgetEventStreamDefinitionTimeLiveArgs
DashboardV2WidgetEventTimelineDefinition, DashboardV2WidgetEventTimelineDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetEventTimelineDefinitionTime, DashboardV2WidgetEventTimelineDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetEventTimelineDefinitionTimeFixed, DashboardV2WidgetEventTimelineDefinitionTimeFixedArgs
DashboardV2WidgetEventTimelineDefinitionTimeLive, DashboardV2WidgetEventTimelineDefinitionTimeLiveArgs
DashboardV2WidgetFreeTextDefinition, DashboardV2WidgetFreeTextDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetFreeTextDefinitionTime, DashboardV2WidgetFreeTextDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetFreeTextDefinitionTimeFixed, DashboardV2WidgetFreeTextDefinitionTimeFixedArgs
DashboardV2WidgetFreeTextDefinitionTimeLive, DashboardV2WidgetFreeTextDefinitionTimeLiveArgs
DashboardV2WidgetFunnelDefinition, DashboardV2WidgetFunnelDefinitionArgs
- 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
Dashboard
V2Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - Time
Dashboard
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
Dashboard
V2Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - Time
Dashboard
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
Dashboard
V2Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - time
Dashboard
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
Dashboard
V2Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - time
Dashboard
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
Dashboard
V2Widget Funnel Definition Request - A nested block describing the request to use when displaying the widget. Only one
requestblock is allowed. - time
Dashboard
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).
DashboardV2WidgetFunnelDefinitionRequest, DashboardV2WidgetFunnelDefinitionRequestArgs
- Query
Dashboard
V2Widget Funnel Definition Request Query - The query for the funnel widget request.
- Query
Dashboard
V2Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Dashboard
V2Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Dashboard
V2Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Dashboard
V2Widget Funnel Definition Request Query - The query for the funnel widget request.
- query Property Map
- The query for the funnel widget request.
DashboardV2WidgetFunnelDefinitionRequestQuery, DashboardV2WidgetFunnelDefinitionRequestQueryArgs
- Data
Source string - The data source for funnel queries. Valid values are
rum. - Query
String string - The widget query.
- Steps
List<Dashboard
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
[]Dashboard
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<Dashboard
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
Dashboard
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[Dashboard
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.
DashboardV2WidgetFunnelDefinitionRequestQueryStep, DashboardV2WidgetFunnelDefinitionRequestQueryStepArgs
DashboardV2WidgetFunnelDefinitionTime, DashboardV2WidgetFunnelDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetFunnelDefinitionTimeFixed, DashboardV2WidgetFunnelDefinitionTimeFixedArgs
DashboardV2WidgetFunnelDefinitionTimeLive, DashboardV2WidgetFunnelDefinitionTimeLiveArgs
DashboardV2WidgetGeomapDefinition, DashboardV2WidgetGeomapDefinitionArgs
- Custom
Links List<DashboardV2Widget 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<Dashboard
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
Dashboard
V2Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Dashboard
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
Dashboard
V2Widget Geomap Definition View - The view of the world that the map should render.
- Custom
Links []DashboardV2Widget 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
[]Dashboard
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
Dashboard
V2Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Dashboard
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
Dashboard
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<DashboardV2Widget 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<Dashboard
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
Dashboard
V2Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Dashboard
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
Dashboard
V2Widget Geomap Definition View - The view of the world that the map should render.
- custom
Links DashboardV2Widget 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
Dashboard
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
Dashboard
V2Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Dashboard
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
Dashboard
V2Widget Geomap Definition View - The view of the world that the map should render.
- custom_
links Sequence[DashboardV2Widget 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[Dashboard
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
Dashboard
V2Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Dashboard
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
Dashboard
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.
DashboardV2WidgetGeomapDefinitionCustomLink, DashboardV2WidgetGeomapDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequest, DashboardV2WidgetGeomapDefinitionRequestArgs
- Formulas
List<Dashboard
V2Widget Geomap Definition Request Formula> - List of formulas that operate on queries.
- Log
Query DashboardV2Widget 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<Dashboard
V2Widget Geomap Definition Request Query> - List of queries that can be returned directly or used in formulas.
- Rum
Query DashboardV2Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Dashboard
V2Widget Geomap Definition Request Formula - List of formulas that operate on queries.
- Log
Query DashboardV2Widget 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
[]Dashboard
V2Widget Geomap Definition Request Query - List of queries that can be returned directly or used in formulas.
- Rum
Query DashboardV2Widget 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<Dashboard
V2Widget Geomap Definition Request Formula> - List of formulas that operate on queries.
- log
Query DashboardV2Widget 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<Dashboard
V2Widget Geomap Definition Request Query> - List of queries that can be returned directly or used in formulas.
- rum
Query DashboardV2Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Dashboard
V2Widget Geomap Definition Request Formula[] - List of formulas that operate on queries.
- log
Query DashboardV2Widget 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
Dashboard
V2Widget Geomap Definition Request Query[] - List of queries that can be returned directly or used in formulas.
- rum
Query DashboardV2Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Dashboard
V2Widget Geomap Definition Request Formula] - List of formulas that operate on queries.
- log_
query DashboardV2Widget 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[Dashboard
V2Widget Geomap Definition Request Query] - List of queries that can be returned directly or used in formulas.
- rum_
query DashboardV2Widget 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.
DashboardV2WidgetGeomapDefinitionRequestFormula, DashboardV2WidgetGeomapDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode Options V2Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - Conditional
Formats []DashboardV2Widget 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
Dashboard
V2Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode Options V2Widget Geomap Definition Request Formula Cell Display Mode Options - Options for the cell display mode. Only used when
cellDisplayModeis set totrend. - conditional
Formats DashboardV2Widget 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
Dashboard
V2Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetGeomapDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetGeomapDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestFormulaLimit, DashboardV2WidgetGeomapDefinitionRequestFormulaLimitArgs
DashboardV2WidgetGeomapDefinitionRequestFormulaNumberFormat, DashboardV2WidgetGeomapDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
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)
DashboardV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetGeomapDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestFormulaStyle, DashboardV2WidgetGeomapDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestLogQuery, DashboardV2WidgetGeomapDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Geomap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Geomap Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Geomap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Geomap Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Geomap Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGeomapDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetGeomapDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGeomapDefinitionRequestLogQueryGroupBy, DashboardV2WidgetGeomapDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGeomapDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetGeomapDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGeomapDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetGeomapDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGeomapDefinitionRequestQuery, DashboardV2WidgetGeomapDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats Query V2Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats Query V2Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats Query V2Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats Query V2Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ query V2Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Dashboardstats_ query V2Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Dashboardquery V2Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetGeomapDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetGeomapDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetGeomapDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestQueryEventQuery, DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Geomap Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
V2Widget Geomap Definition Request Query Event Query Search - The search options.
- Storage string
- Option for storage location. Feature in Private Beta.
- Computes
[]Dashboard
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 []DashboardV2Widget Geomap Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Geomap Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
V2Widget Geomap Definition Request Query Event Query Search - The search options.
- storage String
- Option for storage location. Feature in Private Beta.
- computes
Dashboard
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 DashboardV2Widget Geomap Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
V2Widget Geomap Definition Request Query Event Query Search - The search options.
- storage string
- Option for storage location. Feature in Private Beta.
- computes
Sequence[Dashboard
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[DashboardV2Widget Geomap Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetGeomapDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGeomapDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetGeomapDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestQueryMetricQuery, DashboardV2WidgetGeomapDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestQueryProcessQuery, DashboardV2WidgetGeomapDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetGeomapDefinitionRequestQuerySloQuery, DashboardV2WidgetGeomapDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetGeomapDefinitionRequestRumQuery, DashboardV2WidgetGeomapDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Geomap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Geomap Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Geomap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Geomap Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Geomap Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGeomapDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetGeomapDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGeomapDefinitionRequestRumQueryGroupBy, DashboardV2WidgetGeomapDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGeomapDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetGeomapDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGeomapDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetGeomapDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGeomapDefinitionStyle, DashboardV2WidgetGeomapDefinitionStyleArgs
- 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.
DashboardV2WidgetGeomapDefinitionTime, DashboardV2WidgetGeomapDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGeomapDefinitionTimeFixed, DashboardV2WidgetGeomapDefinitionTimeFixedArgs
DashboardV2WidgetGeomapDefinitionTimeLive, DashboardV2WidgetGeomapDefinitionTimeLiveArgs
DashboardV2WidgetGeomapDefinitionView, DashboardV2WidgetGeomapDefinitionViewArgs
- 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).
DashboardV2WidgetGroupDefinition, DashboardV2WidgetGroupDefinitionArgs
- 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
Dashboard
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<Dashboard
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
Dashboard
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
[]Dashboard
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
Dashboard
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<Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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[Dashboard
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.
DashboardV2WidgetGroupDefinitionTime, DashboardV2WidgetGroupDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionTimeLive, DashboardV2WidgetGroupDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidget, DashboardV2WidgetGroupDefinitionWidgetArgs
- Alert
Graph DashboardDefinition V2Widget Group Definition Widget Alert Graph Definition - The definition for a Alert Graph widget.
- Alert
Value DashboardDefinition V2Widget Group Definition Widget Alert Value Definition - The definition for a Alert Value widget.
- Bar
Chart DashboardDefinition V2Widget Group Definition Widget Bar Chart Definition - The definition for a Bar Chart widget.
- Change
Definition DashboardV2Widget Group Definition Widget Change Definition - The definition for a Change widget.
- Check
Status DashboardDefinition V2Widget Group Definition Widget Check Status Definition - The definition for a Check Status widget.
- Distribution
Definition DashboardV2Widget Group Definition Widget Distribution Definition - The definition for a Distribution widget.
- Event
Stream DashboardDefinition V2Widget Group Definition Widget Event Stream Definition - The definition for a Event Stream widget.
- Event
Timeline DashboardDefinition V2Widget Group Definition Widget Event Timeline Definition - The definition for a Event Timeline widget.
- Free
Text DashboardDefinition V2Widget Group Definition Widget Free Text Definition - The definition for a Free Text widget.
- Funnel
Definition DashboardV2Widget Group Definition Widget Funnel Definition - The definition for a Funnel widget.
- Geomap
Definition DashboardV2Widget Group Definition Widget Geomap Definition - The definition for a Geomap widget.
- Heatmap
Definition DashboardV2Widget Group Definition Widget Heatmap Definition - The definition for a Heatmap widget.
- Hostmap
Definition DashboardV2Widget Group Definition Widget Hostmap Definition - The definition for a Hostmap widget.
- Id int
- The ID of the widget.
- Iframe
Definition DashboardV2Widget Group Definition Widget Iframe Definition - The definition for an Iframe widget.
- Image
Definition DashboardV2Widget Group Definition Widget Image Definition - The definition for an Image widget
- List
Stream DashboardDefinition V2Widget Group Definition Widget List Stream Definition - The definition for a List Stream widget.
- Log
Stream DashboardDefinition V2Widget Group Definition Widget Log Stream Definition - The definition for an Log Stream widget.
- Manage
Status DashboardDefinition V2Widget Group Definition Widget Manage Status Definition - The definition for an Manage Status widget.
- Note
Definition DashboardV2Widget Group Definition Widget Note Definition - The definition for a Note widget.
- Point
Plot DashboardDefinition V2Widget Group Definition Widget Point Plot Definition - The definition for a Point Plot widget.
- Query
Table DashboardDefinition V2Widget Group Definition Widget Query Table Definition - The definition for a Query Table widget.
- Query
Value DashboardDefinition V2Widget Group Definition Widget Query Value Definition - The definition for a Query Value widget.
- Run
Workflow DashboardDefinition V2Widget Group Definition Widget Run Workflow Definition - The definition for a Run Workflow widget.
- Sankey
Definition DashboardV2Widget Group Definition Widget Sankey Definition - The definition for a Sankey diagram widget.
- Scatterplot
Definition DashboardV2Widget Group Definition Widget Scatterplot Definition - The definition for a Scatterplot widget.
- Service
Level DashboardObjective Definition V2Widget Group Definition Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- Servicemap
Definition DashboardV2Widget Group Definition Widget Servicemap Definition - The definition for a Service Map widget.
- Slo
List DashboardDefinition V2Widget Group Definition Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- Sunburst
Definition DashboardV2Widget Group Definition Widget Sunburst Definition - The definition for a Sunburst widget.
- Timeseries
Definition DashboardV2Widget Group Definition Widget Timeseries Definition - The definition for a Timeseries widget.
- Toplist
Definition DashboardV2Widget Group Definition Widget Toplist Definition - The definition for a Toplist widget.
- Topology
Map DashboardDefinition V2Widget Group Definition Widget Topology Map Definition - The definition for a Topology Map widget.
- Trace
Service DashboardDefinition V2Widget Group Definition Widget Trace Service Definition - The definition for a Trace Service widget.
- Treemap
Definition DashboardV2Widget Group Definition Widget Treemap Definition - The definition for a Treemap widget.
- Widget
Layout DashboardV2Widget Group Definition Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- Wildcard
Definition DashboardV2Widget Group Definition Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- Alert
Graph DashboardDefinition V2Widget Group Definition Widget Alert Graph Definition - The definition for a Alert Graph widget.
- Alert
Value DashboardDefinition V2Widget Group Definition Widget Alert Value Definition - The definition for a Alert Value widget.
- Bar
Chart DashboardDefinition V2Widget Group Definition Widget Bar Chart Definition - The definition for a Bar Chart widget.
- Change
Definition DashboardV2Widget Group Definition Widget Change Definition - The definition for a Change widget.
- Check
Status DashboardDefinition V2Widget Group Definition Widget Check Status Definition - The definition for a Check Status widget.
- Distribution
Definition DashboardV2Widget Group Definition Widget Distribution Definition - The definition for a Distribution widget.
- Event
Stream DashboardDefinition V2Widget Group Definition Widget Event Stream Definition - The definition for a Event Stream widget.
- Event
Timeline DashboardDefinition V2Widget Group Definition Widget Event Timeline Definition - The definition for a Event Timeline widget.
- Free
Text DashboardDefinition V2Widget Group Definition Widget Free Text Definition - The definition for a Free Text widget.
- Funnel
Definition DashboardV2Widget Group Definition Widget Funnel Definition - The definition for a Funnel widget.
- Geomap
Definition DashboardV2Widget Group Definition Widget Geomap Definition - The definition for a Geomap widget.
- Heatmap
Definition DashboardV2Widget Group Definition Widget Heatmap Definition - The definition for a Heatmap widget.
- Hostmap
Definition DashboardV2Widget Group Definition Widget Hostmap Definition - The definition for a Hostmap widget.
- Id int
- The ID of the widget.
- Iframe
Definition DashboardV2Widget Group Definition Widget Iframe Definition - The definition for an Iframe widget.
- Image
Definition DashboardV2Widget Group Definition Widget Image Definition - The definition for an Image widget
- List
Stream DashboardDefinition V2Widget Group Definition Widget List Stream Definition - The definition for a List Stream widget.
- Log
Stream DashboardDefinition V2Widget Group Definition Widget Log Stream Definition - The definition for an Log Stream widget.
- Manage
Status DashboardDefinition V2Widget Group Definition Widget Manage Status Definition - The definition for an Manage Status widget.
- Note
Definition DashboardV2Widget Group Definition Widget Note Definition - The definition for a Note widget.
- Point
Plot DashboardDefinition V2Widget Group Definition Widget Point Plot Definition - The definition for a Point Plot widget.
- Query
Table DashboardDefinition V2Widget Group Definition Widget Query Table Definition - The definition for a Query Table widget.
- Query
Value DashboardDefinition V2Widget Group Definition Widget Query Value Definition - The definition for a Query Value widget.
- Run
Workflow DashboardDefinition V2Widget Group Definition Widget Run Workflow Definition - The definition for a Run Workflow widget.
- Sankey
Definition DashboardV2Widget Group Definition Widget Sankey Definition - The definition for a Sankey diagram widget.
- Scatterplot
Definition DashboardV2Widget Group Definition Widget Scatterplot Definition - The definition for a Scatterplot widget.
- Service
Level DashboardObjective Definition V2Widget Group Definition Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- Servicemap
Definition DashboardV2Widget Group Definition Widget Servicemap Definition - The definition for a Service Map widget.
- Slo
List DashboardDefinition V2Widget Group Definition Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- Sunburst
Definition DashboardV2Widget Group Definition Widget Sunburst Definition - The definition for a Sunburst widget.
- Timeseries
Definition DashboardV2Widget Group Definition Widget Timeseries Definition - The definition for a Timeseries widget.
- Toplist
Definition DashboardV2Widget Group Definition Widget Toplist Definition - The definition for a Toplist widget.
- Topology
Map DashboardDefinition V2Widget Group Definition Widget Topology Map Definition - The definition for a Topology Map widget.
- Trace
Service DashboardDefinition V2Widget Group Definition Widget Trace Service Definition - The definition for a Trace Service widget.
- Treemap
Definition DashboardV2Widget Group Definition Widget Treemap Definition - The definition for a Treemap widget.
- Widget
Layout DashboardV2Widget Group Definition Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- Wildcard
Definition DashboardV2Widget 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 DashboardDefinition V2Widget Group Definition Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert
Value DashboardDefinition V2Widget Group Definition Widget Alert Value Definition - The definition for a Alert Value widget.
- bar
Chart DashboardDefinition V2Widget Group Definition Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change
Definition DashboardV2Widget Group Definition Widget Change Definition - The definition for a Change widget.
- check
Status DashboardDefinition V2Widget Group Definition Widget Check Status Definition - The definition for a Check Status widget.
- distribution
Definition DashboardV2Widget Group Definition Widget Distribution Definition - The definition for a Distribution widget.
- event
Stream DashboardDefinition V2Widget Group Definition Widget Event Stream Definition - The definition for a Event Stream widget.
- event
Timeline DashboardDefinition V2Widget Group Definition Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free
Text DashboardDefinition V2Widget Group Definition Widget Free Text Definition - The definition for a Free Text widget.
- funnel
Definition DashboardV2Widget Group Definition Widget Funnel Definition - The definition for a Funnel widget.
- geomap
Definition DashboardV2Widget Group Definition Widget Geomap Definition - The definition for a Geomap widget.
- heatmap
Definition DashboardV2Widget Group Definition Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap
Definition DashboardV2Widget Group Definition Widget Hostmap Definition - The definition for a Hostmap widget.
- id Integer
- The ID of the widget.
- iframe
Definition DashboardV2Widget Group Definition Widget Iframe Definition - The definition for an Iframe widget.
- image
Definition DashboardV2Widget Group Definition Widget Image Definition - The definition for an Image widget
- list
Stream DashboardDefinition V2Widget Group Definition Widget List Stream Definition - The definition for a List Stream widget.
- log
Stream DashboardDefinition V2Widget Group Definition Widget Log Stream Definition - The definition for an Log Stream widget.
- manage
Status DashboardDefinition V2Widget Group Definition Widget Manage Status Definition - The definition for an Manage Status widget.
- note
Definition DashboardV2Widget Group Definition Widget Note Definition - The definition for a Note widget.
- point
Plot DashboardDefinition V2Widget Group Definition Widget Point Plot Definition - The definition for a Point Plot widget.
- query
Table DashboardDefinition V2Widget Group Definition Widget Query Table Definition - The definition for a Query Table widget.
- query
Value DashboardDefinition V2Widget Group Definition Widget Query Value Definition - The definition for a Query Value widget.
- run
Workflow DashboardDefinition V2Widget Group Definition Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey
Definition DashboardV2Widget Group Definition Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot
Definition DashboardV2Widget Group Definition Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service
Level DashboardObjective Definition V2Widget Group Definition Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap
Definition DashboardV2Widget Group Definition Widget Servicemap Definition - The definition for a Service Map widget.
- slo
List DashboardDefinition V2Widget Group Definition Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- sunburst
Definition DashboardV2Widget Group Definition Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries
Definition DashboardV2Widget Group Definition Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist
Definition DashboardV2Widget Group Definition Widget Toplist Definition - The definition for a Toplist widget.
- topology
Map DashboardDefinition V2Widget Group Definition Widget Topology Map Definition - The definition for a Topology Map widget.
- trace
Service DashboardDefinition V2Widget Group Definition Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap
Definition DashboardV2Widget Group Definition Widget Treemap Definition - The definition for a Treemap widget.
- widget
Layout DashboardV2Widget Group Definition Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard
Definition DashboardV2Widget Group Definition Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert
Graph DashboardDefinition V2Widget Group Definition Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert
Value DashboardDefinition V2Widget Group Definition Widget Alert Value Definition - The definition for a Alert Value widget.
- bar
Chart DashboardDefinition V2Widget Group Definition Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change
Definition DashboardV2Widget Group Definition Widget Change Definition - The definition for a Change widget.
- check
Status DashboardDefinition V2Widget Group Definition Widget Check Status Definition - The definition for a Check Status widget.
- distribution
Definition DashboardV2Widget Group Definition Widget Distribution Definition - The definition for a Distribution widget.
- event
Stream DashboardDefinition V2Widget Group Definition Widget Event Stream Definition - The definition for a Event Stream widget.
- event
Timeline DashboardDefinition V2Widget Group Definition Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free
Text DashboardDefinition V2Widget Group Definition Widget Free Text Definition - The definition for a Free Text widget.
- funnel
Definition DashboardV2Widget Group Definition Widget Funnel Definition - The definition for a Funnel widget.
- geomap
Definition DashboardV2Widget Group Definition Widget Geomap Definition - The definition for a Geomap widget.
- heatmap
Definition DashboardV2Widget Group Definition Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap
Definition DashboardV2Widget Group Definition Widget Hostmap Definition - The definition for a Hostmap widget.
- id number
- The ID of the widget.
- iframe
Definition DashboardV2Widget Group Definition Widget Iframe Definition - The definition for an Iframe widget.
- image
Definition DashboardV2Widget Group Definition Widget Image Definition - The definition for an Image widget
- list
Stream DashboardDefinition V2Widget Group Definition Widget List Stream Definition - The definition for a List Stream widget.
- log
Stream DashboardDefinition V2Widget Group Definition Widget Log Stream Definition - The definition for an Log Stream widget.
- manage
Status DashboardDefinition V2Widget Group Definition Widget Manage Status Definition - The definition for an Manage Status widget.
- note
Definition DashboardV2Widget Group Definition Widget Note Definition - The definition for a Note widget.
- point
Plot DashboardDefinition V2Widget Group Definition Widget Point Plot Definition - The definition for a Point Plot widget.
- query
Table DashboardDefinition V2Widget Group Definition Widget Query Table Definition - The definition for a Query Table widget.
- query
Value DashboardDefinition V2Widget Group Definition Widget Query Value Definition - The definition for a Query Value widget.
- run
Workflow DashboardDefinition V2Widget Group Definition Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey
Definition DashboardV2Widget Group Definition Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot
Definition DashboardV2Widget Group Definition Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service
Level DashboardObjective Definition V2Widget Group Definition Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap
Definition DashboardV2Widget Group Definition Widget Servicemap Definition - The definition for a Service Map widget.
- slo
List DashboardDefinition V2Widget Group Definition Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- sunburst
Definition DashboardV2Widget Group Definition Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries
Definition DashboardV2Widget Group Definition Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist
Definition DashboardV2Widget Group Definition Widget Toplist Definition - The definition for a Toplist widget.
- topology
Map DashboardDefinition V2Widget Group Definition Widget Topology Map Definition - The definition for a Topology Map widget.
- trace
Service DashboardDefinition V2Widget Group Definition Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap
Definition DashboardV2Widget Group Definition Widget Treemap Definition - The definition for a Treemap widget.
- widget
Layout DashboardV2Widget Group Definition Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard
Definition DashboardV2Widget Group Definition Widget Wildcard Definition - The definition for a Wildcard (custom visualization) widget using Vega or Vega-Lite specifications.
- alert_
graph_ Dashboarddefinition V2Widget Group Definition Widget Alert Graph Definition - The definition for a Alert Graph widget.
- alert_
value_ Dashboarddefinition V2Widget Group Definition Widget Alert Value Definition - The definition for a Alert Value widget.
- bar_
chart_ Dashboarddefinition V2Widget Group Definition Widget Bar Chart Definition - The definition for a Bar Chart widget.
- change_
definition DashboardV2Widget Group Definition Widget Change Definition - The definition for a Change widget.
- check_
status_ Dashboarddefinition V2Widget Group Definition Widget Check Status Definition - The definition for a Check Status widget.
- distribution_
definition DashboardV2Widget Group Definition Widget Distribution Definition - The definition for a Distribution widget.
- event_
stream_ Dashboarddefinition V2Widget Group Definition Widget Event Stream Definition - The definition for a Event Stream widget.
- event_
timeline_ Dashboarddefinition V2Widget Group Definition Widget Event Timeline Definition - The definition for a Event Timeline widget.
- free_
text_ Dashboarddefinition V2Widget Group Definition Widget Free Text Definition - The definition for a Free Text widget.
- funnel_
definition DashboardV2Widget Group Definition Widget Funnel Definition - The definition for a Funnel widget.
- geomap_
definition DashboardV2Widget Group Definition Widget Geomap Definition - The definition for a Geomap widget.
- heatmap_
definition DashboardV2Widget Group Definition Widget Heatmap Definition - The definition for a Heatmap widget.
- hostmap_
definition DashboardV2Widget Group Definition Widget Hostmap Definition - The definition for a Hostmap widget.
- id int
- The ID of the widget.
- iframe_
definition DashboardV2Widget Group Definition Widget Iframe Definition - The definition for an Iframe widget.
- image_
definition DashboardV2Widget Group Definition Widget Image Definition - The definition for an Image widget
- list_
stream_ Dashboarddefinition V2Widget Group Definition Widget List Stream Definition - The definition for a List Stream widget.
- log_
stream_ Dashboarddefinition V2Widget Group Definition Widget Log Stream Definition - The definition for an Log Stream widget.
- manage_
status_ Dashboarddefinition V2Widget Group Definition Widget Manage Status Definition - The definition for an Manage Status widget.
- note_
definition DashboardV2Widget Group Definition Widget Note Definition - The definition for a Note widget.
- point_
plot_ Dashboarddefinition V2Widget Group Definition Widget Point Plot Definition - The definition for a Point Plot widget.
- query_
table_ Dashboarddefinition V2Widget Group Definition Widget Query Table Definition - The definition for a Query Table widget.
- query_
value_ Dashboarddefinition V2Widget Group Definition Widget Query Value Definition - The definition for a Query Value widget.
- run_
workflow_ Dashboarddefinition V2Widget Group Definition Widget Run Workflow Definition - The definition for a Run Workflow widget.
- sankey_
definition DashboardV2Widget Group Definition Widget Sankey Definition - The definition for a Sankey diagram widget.
- scatterplot_
definition DashboardV2Widget Group Definition Widget Scatterplot Definition - The definition for a Scatterplot widget.
- service_
level_ Dashboardobjective_ definition V2Widget Group Definition Widget Service Level Objective Definition - The definition for a Service Level Objective widget.
- servicemap_
definition DashboardV2Widget Group Definition Widget Servicemap Definition - The definition for a Service Map widget.
- slo_
list_ Dashboarddefinition V2Widget Group Definition Widget Slo List Definition - The definition for an SLO (Service Level Objective) List widget.
- sunburst_
definition DashboardV2Widget Group Definition Widget Sunburst Definition - The definition for a Sunburst widget.
- timeseries_
definition DashboardV2Widget Group Definition Widget Timeseries Definition - The definition for a Timeseries widget.
- toplist_
definition DashboardV2Widget Group Definition Widget Toplist Definition - The definition for a Toplist widget.
- topology_
map_ Dashboarddefinition V2Widget Group Definition Widget Topology Map Definition - The definition for a Topology Map widget.
- trace_
service_ Dashboarddefinition V2Widget Group Definition Widget Trace Service Definition - The definition for a Trace Service widget.
- treemap_
definition DashboardV2Widget Group Definition Widget Treemap Definition - The definition for a Treemap widget.
- widget_
layout DashboardV2Widget Group Definition Widget Widget Layout - The layout of the widget on a 'free' dashboard.
- wildcard_
definition DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetAlertGraphDefinition, DashboardV2WidgetGroupDefinitionWidgetAlertGraphDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Alert Graph Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Alert Graph Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetAlertGraphDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetAlertValueDefinition, DashboardV2WidgetGroupDefinitionWidgetAlertValueDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetAlertValueDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Alert Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Alert Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetAlertValueDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinition, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionArgs
- Custom
Links List<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- Style
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- Time
Dashboard
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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- Style
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- Time
Dashboard
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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Dashboard
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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Dashboard
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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request - A nested block describing the request to use when displaying the widget.
- style
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style - Style customization for the bar chart widget.
- time
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestArgs
- Apm
Query DashboardV2Widget 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<DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula> - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Query> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Style - Define request for the widget's style.
- Apm
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Conditional
Formats []DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Query - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Dashboard
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 DashboardV2Widget 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<DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula> - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Query> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula[] - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Query[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Style - Define request for the widget's style.
- apm_
query DashboardV2Widget 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[DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula] - A list of formulas to use in the widget.
- log_
query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Query] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Bar Chart Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormula, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
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)
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Bar Chart Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestProcessQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ 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_ Dashboardstats_ 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_ Dashboardquery V2Widget Group Definition Widget Bar Chart Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Bar Chart Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Bar Chart Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Bar Chart Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSort, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortArgs
- Count int
- The number of items to limit the widget to.
- Order
Bies List<DashboardV2Widget 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 []DashboardV2Widget 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<DashboardV2Widget 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 DashboardV2Widget 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[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderBy, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByArgs
- Formula
Sort DashboardV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- Group
Sort DashboardV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- Formula
Sort DashboardV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- Group
Sort DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group
Sort DashboardV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula
Sort DashboardV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group
Sort DashboardV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Group Sort - Sort by a group (tag) value.
- formula_
sort DashboardV2Widget Group Definition Widget Bar Chart Definition Request Sort Order By Formula Sort - Sort by a formula value.
- group_
sort DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByFormulaSort, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByFormulaSortArgs
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByGroupSort, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestSortOrderByGroupSortArgs
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyle, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionRequestStyleArgs
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionStyle, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleArgs
- Display
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplay, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplayArgs
- Flat
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- Stacked
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- Flat
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- Stacked
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style Display Stacked - Stacked display mode.
- flat
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Style Display Flat - Flat display mode with no stacking.
- stacked
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplayStacked, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionStyleDisplayStackedArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Bar Chart Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetBarChartDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetChangeDefinition, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionArgs
- Custom
Links List<DashboardV2Widget 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<Dashboard
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
Dashboard
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 []DashboardV2Widget 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
[]Dashboard
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
Dashboard
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<DashboardV2Widget 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<Dashboard
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
Dashboard
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 DashboardV2Widget 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
Dashboard
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
Dashboard
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[DashboardV2Widget 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[Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestArgs
- Apm
Query DashboardV2Widget 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<Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Change Definition Request Query> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget 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
[]Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Change Definition Request Query - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget 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<Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Change Definition Request Query> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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 DashboardV2Widget 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
Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Change Definition Request Query[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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 DashboardV2Widget 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[Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Change Definition Request Query] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Group Definition Widget Change Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Change Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Change Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Change Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Change Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Change Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormula, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Change Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Change Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
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)
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Change Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Change Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Change Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Change Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Change Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestProcessQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Change Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ query V2Widget Group Definition Widget Change Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Dashboardstats_ query V2Widget Group Definition Widget Change Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Dashboardquery V2Widget Group Definition Widget Change Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Change Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Change Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Change Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Change Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Change Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Change Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Change Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Change Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Change Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Change Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Change Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Change Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Change Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Change Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Change Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Change Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Change Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Change Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Change Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionRequestSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Change Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Change Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetChangeDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetCheckStatusDefinition, DashboardV2WidgetGroupDefinitionWidgetCheckStatusDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Check Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Check Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetCheckStatusDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinition, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionArgs
- 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<Dashboard
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<Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
[]Dashboard
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
[]Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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<Dashboard
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<Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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[Dashboard
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[Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionMarker, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionMarkerArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestArgs
- Apm
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats DashboardQuery V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- Formulas
List<Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula> - A list of formulas to use in the widget.
- Histogram
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- Log
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats DashboardQuery V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- Formulas
[]Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula - A list of formulas to use in the widget.
- Histogram
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- Log
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats DashboardQuery V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
List<Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula> - A list of formulas to use in the widget.
- histogram
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats DashboardQuery V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula[] - A list of formulas to use in the widget.
- histogram
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
stats_ Dashboardquery V2Widget Group Definition Widget Distribution Definition Request Apm Stats Query - The APM stats query to use in the widget.
- formulas
Sequence[Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula] - A list of formulas to use in the widget.
- histogram_
query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query - Singular query block for histogram-mode distribution requests.
- log_
query DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Distribution Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryArgs
- 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<Dashboard
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
[]Dashboard
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<Dashboard
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
Dashboard
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[Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumn, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestApmStatsQueryColumnArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormula, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Distribution Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Distribution Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryArgs
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- Event
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- Metric
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- Event
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- Metric
Query DashboardV2Widget 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 DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Metric Query - Metric query for histogram-mode distribution.
- apm_
resource_ Dashboardstats_ query V2Widget Group Definition Widget Distribution Definition Request Histogram Query Apm Resource Stats Query - APM resource stats query for histogram-mode distribution.
- event_
query DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query - Event query for histogram-mode distribution.
- metric_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Distribution Definition Request Histogram Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestHistogramQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Distribution Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestProcessQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ query V2Widget Group Definition Widget Distribution Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Dashboardstats_ query V2Widget Group Definition Widget Distribution Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Dashboardquery V2Widget Group Definition Widget Distribution Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Distribution Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Distribution Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Distribution Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Distribution Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestStyle, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionRequestStyleArgs
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Distribution Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Distribution Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxis, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionXaxisArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxis, DashboardV2WidgetGroupDefinitionWidgetDistributionDefinitionYaxisArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetEventStreamDefinition, DashboardV2WidgetGroupDefinitionWidgetEventStreamDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetEventStreamDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Event Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Event Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetEventStreamDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetEventTimelineDefinition, DashboardV2WidgetGroupDefinitionWidgetEventTimelineDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Event Timeline Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Event Timeline Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetEventTimelineDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetFreeTextDefinition, DashboardV2WidgetGroupDefinitionWidgetFreeTextDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetFreeTextDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Free Text Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Free Text Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetFreeTextDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetFunnelDefinition, DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestArgs
- Query
Dashboard
V2Widget Group Definition Widget Funnel Definition Request Query - The query for the funnel widget request.
- Query
Dashboard
V2Widget Group Definition Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Dashboard
V2Widget Group Definition Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Dashboard
V2Widget Group Definition Widget Funnel Definition Request Query - The query for the funnel widget request.
- query
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryArgs
- Data
Source string - The data source for funnel queries. Valid values are
rum. - Query
String string - The widget query.
- Steps
List<Dashboard
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
[]Dashboard
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<Dashboard
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
Dashboard
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[Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStep, DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionRequestQueryStepArgs
DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Funnel Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Funnel Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetFunnelDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinition, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionArgs
- Custom
Links List<DashboardV2Widget 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<Dashboard
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
Dashboard
V2Widget Group Definition Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Dashboard
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
Dashboard
V2Widget Group Definition Widget Geomap Definition View - The view of the world that the map should render.
- Custom
Links []DashboardV2Widget 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
[]Dashboard
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
Dashboard
V2Widget Group Definition Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Dashboard
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
Dashboard
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<DashboardV2Widget 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<Dashboard
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
Dashboard
V2Widget Group Definition Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Dashboard
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
Dashboard
V2Widget Group Definition Widget Geomap Definition View - The view of the world that the map should render.
- custom
Links DashboardV2Widget 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
Dashboard
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
Dashboard
V2Widget Group Definition Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Dashboard
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
Dashboard
V2Widget Group Definition Widget Geomap Definition View - The view of the world that the map should render.
- custom_
links Sequence[DashboardV2Widget 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[Dashboard
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
Dashboard
V2Widget Group Definition Widget Geomap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestArgs
- Formulas
List<Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula> - List of formulas that operate on queries.
- Log
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Geomap Definition Request Query> - List of queries that can be returned directly or used in formulas.
- Rum
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula - List of formulas that operate on queries.
- Log
Query DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Geomap Definition Request Query - List of queries that can be returned directly or used in formulas.
- Rum
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula> - List of formulas that operate on queries.
- log
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Geomap Definition Request Query> - List of queries that can be returned directly or used in formulas.
- rum
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula[] - List of formulas that operate on queries.
- log
Query DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Query[] - List of queries that can be returned directly or used in formulas.
- rum
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula] - List of formulas that operate on queries.
- log_
query DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Geomap Definition Request Query] - List of queries that can be returned directly or used in formulas.
- rum_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormula, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Geomap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Geomap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
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)
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Geomap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Geomap Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Geomap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Geomap Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Geomap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Geomap Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ query V2Widget Group Definition Widget Geomap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Dashboardstats_ query V2Widget Group Definition Widget Geomap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Dashboardquery V2Widget Group Definition Widget Geomap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Geomap Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Geomap Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Geomap Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionStyle, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Geomap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Geomap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionView, DashboardV2WidgetGroupDefinitionWidgetGeomapDefinitionViewArgs
- 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).
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinition, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionArgs
- Custom
Links List<DashboardV2Widget 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<Dashboard
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<Dashboard
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<Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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 []DashboardV2Widget 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
[]Dashboard
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
[]Dashboard
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
[]Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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<DashboardV2Widget 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<Dashboard
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<Dashboard
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<Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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 DashboardV2Widget 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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[DashboardV2Widget 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[Dashboard
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[Dashboard
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[Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionEvent, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionEventArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarker, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionMarkerArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestArgs
- Apm
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula> - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Query> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Dashboard
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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Query - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Style
Dashboard
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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula> - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Query> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Dashboard
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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula[] - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Query[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Dashboard
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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula] - A list of formulas to use in the widget.
- log_
query DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Query] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Heatmap Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormula, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Heatmap Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
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)
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Heatmap Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestProcessQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Heatmap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Heatmap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Heatmap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Heatmap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Dashboardstats_ query V2Widget Group Definition Widget Heatmap Definition Request Query Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Dashboardquery V2Widget Group Definition Widget Heatmap Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Heatmap Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Heatmap Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Heatmap Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestStyle, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionRequestStyleArgs
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Heatmap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Heatmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Heatmap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Heatmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Heatmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Heatmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Heatmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Heatmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Heatmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxis, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionXaxisArgs
- 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).
DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxis, DashboardV2WidgetGroupDefinitionWidgetHeatmapDefinitionYaxisArgs
- 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).
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinition, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionArgs
- Custom
Links List<DashboardV2Widget 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
Dashboard
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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Dashboard
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 []DashboardV2Widget 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
Dashboard
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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- Time
Dashboard
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<DashboardV2Widget 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
Dashboard
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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Dashboard
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 DashboardV2Widget 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
Dashboard
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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Dashboard
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[DashboardV2Widget 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
Dashboard
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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Style - The style of the widget graph. One nested block is allowed using the structure below.
- time
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestArgs
- Fill
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFill, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillArgs
- Apm
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula> - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Query> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Query - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula> - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Query> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula[] - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Query[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula] - A list of formulas to use in the widget.
- log_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Query] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormula, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Fill Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillProcessQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryArgs
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Hostmap Definition Request Fill Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Hostmap Definition Request Fill Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Hostmap Definition Request Fill Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Hostmap Definition Request Fill Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ 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_ Dashboardstats_ 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_ Dashboardquery V2Widget Group Definition Widget Hostmap Definition Request Fill Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Hostmap Definition Request Fill Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestFillSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSize, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeArgs
- Apm
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula> - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Query> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Query - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula> - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Query> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula[] - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Query[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula] - A list of formulas to use in the widget.
- log_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Query] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormula, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Hostmap Definition Request Size Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeProcessQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryArgs
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Hostmap Definition Request Size Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Hostmap Definition Request Size Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Hostmap Definition Request Size Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Hostmap Definition Request Size Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ 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_ Dashboardstats_ 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_ Dashboardquery V2Widget Group Definition Widget Hostmap Definition Request Size Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Hostmap Definition Request Size Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionRequestSizeSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionStyle, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Hostmap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Hostmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Hostmap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Hostmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Hostmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Hostmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Hostmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Hostmap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Hostmap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetHostmapDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetIframeDefinition, DashboardV2WidgetGroupDefinitionWidgetIframeDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetIframeDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetIframeDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Iframe Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Iframe Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Iframe Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Iframe Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Iframe Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Iframe Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Iframe Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Iframe Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Iframe Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetIframeDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetIframeDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetIframeDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetImageDefinition, DashboardV2WidgetGroupDefinitionWidgetImageDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetImageDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetImageDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Image Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Image Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Image Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Image Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Image Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Image Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Image Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Image Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Image Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetImageDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetImageDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetImageDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetImageDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetListStreamDefinition, DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionArgs
- Requests
List<Dashboard
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
Dashboard
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
[]Dashboard
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
Dashboard
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<Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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[Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestArgs
- Columns
List<Dashboard
V2Widget Group Definition Widget List Stream Definition Request Column> - Widget columns.
- Query
Dashboard
V2Widget Group Definition Widget List Stream Definition Request Query - Updated list stream widget.
- Response
Format string - Widget response format. Valid values are
eventList.
- Columns
[]Dashboard
V2Widget Group Definition Widget List Stream Definition Request Column - Widget columns.
- Query
Dashboard
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<Dashboard
V2Widget Group Definition Widget List Stream Definition Request Column> - Widget columns.
- query
Dashboard
V2Widget Group Definition Widget List Stream Definition Request Query - Updated list stream widget.
- response
Format String - Widget response format. Valid values are
eventList.
- columns
Dashboard
V2Widget Group Definition Widget List Stream Definition Request Column[] - Widget columns.
- query
Dashboard
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[Dashboard
V2Widget Group Definition Widget List Stream Definition Request Column] - Widget columns.
- query
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestColumn, DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestColumnArgs
DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryArgs
- 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<DashboardV2Widget 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
Dashboard
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 []DashboardV2Widget 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
Dashboard
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<DashboardV2Widget 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
Dashboard
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 DashboardV2Widget 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
Dashboard
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[DashboardV2Widget 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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQueryGroupByArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuerySort, DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionRequestQuerySortArgs
DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget List Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget List Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget List Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget List Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget List Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget List Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget List Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget List Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget List Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetListStreamDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetLogStreamDefinition, DashboardV2WidgetGroupDefinitionWidgetLogStreamDefinitionArgs
- 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
Dashboard
V2Widget Group Definition Widget Log Stream Definition Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - Time
Dashboard
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
Dashboard
V2Widget Group Definition Widget Log Stream Definition Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - Time
Dashboard
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
Dashboard
V2Widget Group Definition Widget Log Stream Definition Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - time
Dashboard
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
Dashboard
V2Widget Group Definition Widget Log Stream Definition Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - time
Dashboard
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
Dashboard
V2Widget Group Definition Widget Log Stream Definition Sort - The facet and order to sort the data, for example:
{"column": "time", "order": "desc"}. - time
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetLogStreamDefinitionSort, DashboardV2WidgetGroupDefinitionWidgetLogStreamDefinitionSortArgs
DashboardV2WidgetGroupDefinitionWidgetLogStreamDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Log Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Log Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Log Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Log Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Log Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Log Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Log Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Log Stream Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Log Stream Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetLogStreamDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetManageStatusDefinition, DashboardV2WidgetGroupDefinitionWidgetManageStatusDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetManageStatusDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Manage Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Manage Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Manage Status Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Manage Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Manage Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Manage Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Manage Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Manage Status Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Manage Status Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetManageStatusDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetNoteDefinition, DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Note Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Note Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Note Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Note Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Note Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Note Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Note Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Note Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Note Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinition, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionArgs
- Custom
Links List<DashboardV2Widget 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
Dashboard
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<Dashboard
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<Dashboard
V2Widget Group Definition Widget Point Plot Definition Request> - A nested block describing the request to use when displaying the widget.
- Time
Dashboard
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
Dashboard
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 []DashboardV2Widget 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
Dashboard
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
[]Dashboard
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
[]Dashboard
V2Widget Group Definition Widget Point Plot Definition Request - A nested block describing the request to use when displaying the widget.
- Time
Dashboard
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
Dashboard
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<DashboardV2Widget 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
Dashboard
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<Dashboard
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<Dashboard
V2Widget Group Definition Widget Point Plot Definition Request> - A nested block describing the request to use when displaying the widget.
- time
Dashboard
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
Dashboard
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 DashboardV2Widget 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
Dashboard
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
Dashboard
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
Dashboard
V2Widget Group Definition Widget Point Plot Definition Request[] - A nested block describing the request to use when displaying the widget.
- time
Dashboard
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
Dashboard
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[DashboardV2Widget 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
Dashboard
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[Dashboard
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[Dashboard
V2Widget Group Definition Widget Point Plot Definition Request] - A nested block describing the request to use when displaying the widget.
- time
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegendArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarkerArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestArgs
- Projection
Dashboard
V2Widget Group Definition Widget Point Plot Definition Request Projection - Projection configuration for the point plot request.
- Query
Dashboard
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
Dashboard
V2Widget Group Definition Widget Point Plot Definition Request Projection - Projection configuration for the point plot request.
- Query
Dashboard
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
Dashboard
V2Widget Group Definition Widget Point Plot Definition Request Projection - Projection configuration for the point plot request.
- query
Dashboard
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
Dashboard
V2Widget Group Definition Widget Point Plot Definition Request Projection - Projection configuration for the point plot request.
- query
Dashboard
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
Dashboard
V2Widget Group Definition Widget Point Plot Definition Request Projection - Projection configuration for the point plot request.
- query
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionArgs
- Dimensions
List<Dashboard
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
[]Dashboard
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<Dashboard
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
Dashboard
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[Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimensionArgs
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Point Plot Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Point Plot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Point Plot Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Point Plot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Point Plot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Point Plot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Point Plot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Point Plot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Point Plot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis, DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxisArgs
- 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).
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinition, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionArgs
- Custom
Links List<DashboardV2Widget 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<Dashboard
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
Dashboard
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 []DashboardV2Widget 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
[]Dashboard
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
Dashboard
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<DashboardV2Widget 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<Dashboard
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
Dashboard
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 DashboardV2Widget 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
Dashboard
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
Dashboard
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[DashboardV2Widget 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[Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestArgs
- 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats DashboardQuery 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<DashboardV2Widget 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<Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Query Table Definition Request Query> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Apm
Stats DashboardQuery 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 []DashboardV2Widget 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
[]Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Query Table Definition Request Query - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Text
Formats []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats DashboardQuery 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<DashboardV2Widget 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<Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Query Table Definition Request Query> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm
Stats DashboardQuery 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 DashboardV2Widget 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
Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Query[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- text
Formats DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- apm_
stats_ Dashboardquery 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[DashboardV2Widget 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[Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Query Table Definition Request Query] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget 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[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Query Table Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryArgs
- 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<Dashboard
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
[]Dashboard
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<Dashboard
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
Dashboard
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[Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryColumn, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestApmStatsQueryColumnArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormula, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Query Table Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Query Table Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Query Table Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Query Table Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Query Table Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Query Table Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Query Table Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Query Table Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Query Table Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Query Table Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestProcessQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Query Table Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Query Table Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Query Table Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Query Table Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ 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_ Dashboardstats_ 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_ Dashboardquery V2Widget Group Definition Widget Query Table Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Query Table Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Query Table Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Query Table Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Query Table Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormat, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatArgs
- Text
Formats List<DashboardV2Widget 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 []DashboardV2Widget 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<DashboardV2Widget 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 DashboardV2Widget 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[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormat, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatArgs
- Match
Dashboard
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
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Replace - Match rule for the table widget text format.
- Match
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Replace - Match rule for the table widget text format.
- match
Dashboard
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
Dashboard
V2Widget Group Definition Widget Query Table Definition Request Text Format Text Format Replace - Match rule for the table widget text format.
- match
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatMatch, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatMatchArgs
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplace, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionRequestTextFormatTextFormatReplaceArgs
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Query Table Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Query Table Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Query Table Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Query Table Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Query Table Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Query Table Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Query Table Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Query Table Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Query Table Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinition, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionArgs
- Autoscale bool
- A Boolean indicating whether to automatically scale the tile.
- Custom
Links List<DashboardV2Widget 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<Dashboard
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
Dashboard
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 DashboardV2Widget 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 []DashboardV2Widget 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
[]Dashboard
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
Dashboard
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 DashboardV2Widget 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<DashboardV2Widget 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<Dashboard
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
Dashboard
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 DashboardV2Widget 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 DashboardV2Widget 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
Dashboard
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
Dashboard
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 DashboardV2Widget 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[DashboardV2Widget 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[Dashboard
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
Dashboard
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 DashboardV2Widget 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).
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestArgs
- Aggregator string
- The aggregator to use for time aggregation. Valid values are
avg,min,max,sum,last,area,l2norm,percentile. - Apm
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Audit
Query DashboardV2Widget 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<DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula> - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Query Value Definition Request Query> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Audit
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Conditional
Formats []DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Query Value Definition Request Query - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit
Query DashboardV2Widget 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<DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula> - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Query Value Definition Request Query> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- conditional
Formats DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula[] - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Query[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit_
query DashboardV2Widget 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[DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula] - A list of formulas to use in the widget.
- log_
query DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Query Value Definition Request Query] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Query Value Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Query Value Definition Request Audit Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestAuditQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormula, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Query Value Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Query Value Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Query Value Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Query Value Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Query Value Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Query Value Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Query Value Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestProcessQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryArgs
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Query Value Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Query Value Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Query Value Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Query Value Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ 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_ Dashboardstats_ 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_ Dashboardquery V2Widget Group Definition Widget Query Value Definition Request Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Query Value Definition Request Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Query Value Definition Request Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Query Value Definition Request Rum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Query Value Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Query Value Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Query Value Definition Request Security Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Query Value Definition Request Security Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Query Value Definition Request Security Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Query Value Definition Request Security Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Query Value Definition Request Security Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionRequestSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Query Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Query Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Query Value Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Query Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Query Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Query Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Query Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Query Value Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Query Value Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackground, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundArgs
- Type string
- Whether the Timeseries is made using an area or bars. Valid values are
area,bars. - Yaxis
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundYaxis, DashboardV2WidgetGroupDefinitionWidgetQueryValueDefinitionTimeseriesBackgroundYaxisArgs
- 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).
DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinition, DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionArgs
- Workflow
Id string - Workflow ID
- Custom
Links List<DashboardV2Widget 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<Dashboard
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
Dashboard
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 []DashboardV2Widget 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
[]Dashboard
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
Dashboard
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<DashboardV2Widget 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<Dashboard
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
Dashboard
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 DashboardV2Widget 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
Dashboard
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
Dashboard
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[DashboardV2Widget 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[Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInput, DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionInputArgs
DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Run Workflow Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Run Workflow Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Run Workflow Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Run Workflow Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Run Workflow Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Run Workflow Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Run Workflow Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Run Workflow Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Run Workflow Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetRunWorkflowDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinition, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionArgs
- 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<Dashboard
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
Dashboard
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
[]Dashboard
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
Dashboard
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<Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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[Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestArgs
- Network
Request DashboardV2Widget Group Definition Widget Sankey Definition Request Network Request - Network request for the Sankey widget.
- Rum
Request DashboardV2Widget Group Definition Widget Sankey Definition Request Rum Request - RUM request for the Sankey widget.
- Network
Request DashboardV2Widget Group Definition Widget Sankey Definition Request Network Request - Network request for the Sankey widget.
- Rum
Request DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sankey Definition Request Network Request - Network request for the Sankey widget.
- rum
Request DashboardV2Widget Group Definition Widget Sankey Definition Request Rum Request - RUM request for the Sankey widget.
- network
Request DashboardV2Widget Group Definition Widget Sankey Definition Request Network Request - Network request for the Sankey widget.
- rum
Request DashboardV2Widget Group Definition Widget Sankey Definition Request Rum Request - RUM request for the Sankey widget.
- network_
request DashboardV2Widget Group Definition Widget Sankey Definition Request Network Request - Network request for the Sankey widget.
- rum_
request DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequest, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestArgs
- Query
Dashboard
V2Widget Group Definition Widget Sankey Definition Request Network Request Query - The query for the Sankey network request.
- Query
Dashboard
V2Widget Group Definition Widget Sankey Definition Request Network Request Query - The query for the Sankey network request.
- query
Dashboard
V2Widget Group Definition Widget Sankey Definition Request Network Request Query - The query for the Sankey network request.
- query
Dashboard
V2Widget Group Definition Widget Sankey Definition Request Network Request Query - The query for the Sankey network request.
- query
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuery, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryCompute, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuerySort, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestNetworkRequestQuerySortArgs
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequest, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequestArgs
- Query
Dashboard
V2Widget Group Definition Widget Sankey Definition Request Rum Request Query - The query for the Sankey RUM request.
- Query
Dashboard
V2Widget Group Definition Widget Sankey Definition Request Rum Request Query - The query for the Sankey RUM request.
- query
Dashboard
V2Widget Group Definition Widget Sankey Definition Request Rum Request Query - The query for the Sankey RUM request.
- query
Dashboard
V2Widget Group Definition Widget Sankey Definition Request Rum Request Query - The query for the Sankey RUM request.
- query
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequestQuery, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionRequestRumRequestQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Sankey Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Sankey Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Sankey Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Sankey Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Sankey Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Sankey Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Sankey Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Sankey Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Sankey Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetSankeyDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinition, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionArgs
- Color
By List<string>Groups - List of groups used for colors.
- Custom
Links List<DashboardV2Widget 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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 []DashboardV2Widget 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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<DashboardV2Widget 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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 DashboardV2Widget 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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[DashboardV2Widget 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestArgs
- Scatterplot
Tables List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table> - Scatterplot request containing formulas and functions.
- X
Dashboard
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
Dashboard
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 []DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table - Scatterplot request containing formulas and functions.
- X
Dashboard
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
Dashboard
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<DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table> - Scatterplot request containing formulas and functions.
- x
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table[] - Scatterplot request containing formulas and functions.
- x
Dashboard
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
Dashboard
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[DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table] - Scatterplot request containing formulas and functions.
- x
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTable, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableArgs
- Formulas
List<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Formula> - A list of formulas to use in the widget.
- Queries
List<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query> - A list of queries to use in the widget.
- Formulas
[]Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Formula - A list of formulas to use in the widget.
- Queries
[]Dashboard
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<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Formula> - A list of formulas to use in the widget.
- queries
List<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query> - A list of queries to use in the widget.
- formulas
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Formula[] - A list of formulas to use in the widget.
- queries
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query[] - A list of queries to use in the widget.
- formulas
Sequence[Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Formula] - A list of formulas to use in the widget.
- queries
Sequence[Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableFormula, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableFormulaArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryArgs
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats 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 DashboardStats 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 DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ 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_ Dashboardstats_ 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_ Dashboardquery V2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Scatterplot Definition Request Scatterplot Table Query Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestScatterplotTableQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestX, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXArgs
- Aggregator string
- Aggregator used for the request. Valid values are
avg,min,max,sum,last,area,l2norm,percentile. - Apm
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula> - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XQuery> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XQuery - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula> - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XQuery> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula[] - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XQuery[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula] - A list of formulas to use in the widget.
- log_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XQuery] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Scatterplot Definition Request XApm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormula, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request XFormula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Scatterplot Definition Request XLog Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXProcessQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryArgs
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request XQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request XQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request XQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request XQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Dashboardstats_ query V2Widget Group Definition Widget Scatterplot Definition Request XQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Dashboardquery V2Widget Group Definition Widget Scatterplot Definition Request XQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Scatterplot Definition Request XQuery Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Scatterplot Definition Request XRum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Scatterplot Definition Request XSecurity Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestXSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestY, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYArgs
- Aggregator string
- Aggregator used for the request. Valid values are
avg,min,max,sum,last,area,l2norm,percentile. - Apm
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula> - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YQuery> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YQuery - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula> - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YQuery> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula[] - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YQuery[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula] - A list of formulas to use in the widget.
- log_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YQuery] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Scatterplot Definition Request YApm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormula, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Request YFormula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitArgs
- canonical Property Map
- Canonical Units
- custom Property Map
- Use custom (non canonical metrics)
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Scatterplot Definition Request YLog Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYLogQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYProcessQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryArgs
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request YQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Slo Query - The SLO query using formulas and functions.
- Apm
Dependency DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- Apm
Resource DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- Cloud
Cost DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request YQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- Event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query - A timeseries formula and functions events query.
- Metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Metric Query - A timeseries formula and functions metrics query.
- Process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Process Query - The process query using formulas and functions.
- Slo
Query DashboardV2Widget 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 DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request YQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Slo Query - The SLO query using formulas and functions.
- apm
Dependency DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm
Resource DashboardStats Query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud
Cost DashboardQuery V2Widget Group Definition Widget Scatterplot Definition Request YQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query - A timeseries formula and functions events query.
- metric
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Metric Query - A timeseries formula and functions metrics query.
- process
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Process Query - The process query using formulas and functions.
- slo
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Slo Query - The SLO query using formulas and functions.
- apm_
dependency_ Dashboardstats_ query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Dependency Stats Query - The APM Dependency Stats query using formulas and functions.
- apm_
resource_ Dashboardstats_ query V2Widget Group Definition Widget Scatterplot Definition Request YQuery Apm Resource Stats Query - The APM Resource Stats query using formulas and functions.
- cloud_
cost_ Dashboardquery V2Widget Group Definition Widget Scatterplot Definition Request YQuery Cloud Cost Query - The Cloud Cost query using formulas and functions.
- event_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query - A timeseries formula and functions events query.
- metric_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Metric Query - A timeseries formula and functions metrics query.
- process_
query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Process Query - The process query using formulas and functions.
- slo_
query DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmDependencyStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryApmResourceStatsQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryCloudCostQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryArgs
- Computes
List<Dashboard
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<DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By> - Group by options.
- Group
By DashboardFields 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
Dashboard
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
[]Dashboard
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 []DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By - Group by options.
- Group
By DashboardFields 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
Dashboard
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<Dashboard
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<DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By> - Group by options.
- group
By DashboardFields 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
Dashboard
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
Dashboard
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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By[] - Group by options.
- group
By DashboardFields 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
Dashboard
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[Dashboard
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[DashboardV2Widget Group Definition Widget Scatterplot Definition Request YQuery Event Query Group By] - Group by options.
- group_
by_ Dashboardfields 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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryComputeArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByArgs
- Facet string
- The event facet.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFields, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsArgs
- Fields List<string>
- List of event facets to group by.
- Limit int
- The number of groups to return.
- Sort
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsSort, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupByFieldsSortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBySort, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQueryGroupBySortArgs
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- Aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - Metric string
- The metric used for sorting group by results.
- Order string
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric string
- The metric used for sorting group by results.
- order string
- Direction of sort. Valid values are
asc,desc.
- aggregation String
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,min,max,avg. - metric String
- The metric used for sorting group by results.
- order String
- Direction of sort. Valid values are
asc,desc.
- aggregation string
- The aggregation methods for the event platform queries. Valid values are
count,cardinality,median,pc75,pc90,pc95,pc98,pc99,sum,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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuerySearch, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryEventQuerySearchArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryMetricQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryMetricQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQueryProcessQueryArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYQuerySloQueryArgs
- 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".
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Scatterplot Definition Request YRum Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYRumQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Scatterplot Definition Request YSecurity Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionRequestYSecurityQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Scatterplot Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxis, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionXaxisArgs
- 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).
DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxis, DashboardV2WidgetGroupDefinitionWidgetScatterplotDefinitionYaxisArgs
- 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).
DashboardV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinition, DashboardV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionArgs
- 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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Service Level Objective Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Service Level Objective Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Service Level Objective Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Service Level Objective Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Service Level Objective Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Service Level Objective Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Service Level Objective Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Service Level Objective Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Service Level Objective Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetServiceLevelObjectiveDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetServicemapDefinition, DashboardV2WidgetGroupDefinitionWidgetServicemapDefinitionArgs
- 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<DashboardV2Widget 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
Dashboard
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 []DashboardV2Widget 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
Dashboard
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<DashboardV2Widget 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
Dashboard
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 DashboardV2Widget 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
Dashboard
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[DashboardV2Widget 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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetServicemapDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetServicemapDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetServicemapDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Servicemap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Servicemap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Servicemap Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Servicemap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Servicemap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Servicemap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Servicemap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Servicemap Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Servicemap Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetServicemapDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetSloListDefinition, DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionArgs
- Requests
List<Dashboard
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
Dashboard
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
[]Dashboard
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
Dashboard
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<Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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[Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionRequestArgs
- Query
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuery, DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQueryArgs
- Query
String string - Widget query.
- Limit int
- Maximum number of results to display in the table.
- Sorts
List<Dashboard
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
[]Dashboard
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<Dashboard
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
Dashboard
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[Dashboard
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"}.
DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySort, DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionRequestQuerySortArgs
DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionTime, DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionTimeArgs
- Fixed
Dashboard
V2Widget Group Definition Widget Slo List Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Slo List Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- Fixed
Dashboard
V2Widget Group Definition Widget Slo List Definition Time Fixed - A fixed time range with explicit start and end times.
- Live
Dashboard
V2Widget Group Definition Widget Slo List Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Slo List Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Slo List Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Slo List Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
V2Widget Group Definition Widget Slo List Definition Time Live - An arbitrary live time span, such as 17 minutes or 6 hours.
- fixed
Dashboard
V2Widget Group Definition Widget Slo List Definition Time Fixed - A fixed time range with explicit start and end times.
- live
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionTimeFixed, DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionTimeFixedArgs
DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLive, DashboardV2WidgetGroupDefinitionWidgetSloListDefinitionTimeLiveArgs
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinition, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionArgs
- Custom
Links List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Legend Inline - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- Legend
Table DashboardV2Widget 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<Dashboard
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
Dashboard
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 []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Legend Inline - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- Legend
Table DashboardV2Widget 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
[]Dashboard
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
Dashboard
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<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Legend Inline - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- legend
Table DashboardV2Widget 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<Dashboard
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
Dashboard
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 DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Legend Inline - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- legend
Table DashboardV2Widget 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
Dashboard
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
Dashboard
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[DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Legend Inline - Used to configure the inline legend. Cannot be used in conjunction with legend*table.
- legend_
table DashboardV2Widget 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[Dashboard
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
Dashboard
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).
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionCustomLink, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionCustomLinkArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInline, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendInlineArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendTable, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionLegendTableArgs
- 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).
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequest, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestArgs
- Apm
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Audit
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
List<Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula> - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Network
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Network Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Query> - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Style - Define style for the widget's request.
- Apm
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Audit
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Formulas
[]Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula - A list of formulas to use in the widget.
- Log
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Network
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Network Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Process
Query DashboardV2Widget 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
[]Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Query - A list of queries to use in the widget.
- Rum
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Security
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- Sort
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- Style
Dashboard
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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
List<Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula> - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- network
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Network Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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<Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Query> - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Style - Define style for the widget's request.
- apm
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula[] - A list of formulas to use in the widget.
- log
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- network
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Network Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process
Query DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Query[] - A list of queries to use in the widget.
- rum
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Style - Define style for the widget's request.
- apm_
query DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- audit_
query DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- formulas
Sequence[Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula] - A list of formulas to use in the widget.
- log_
query DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- network_
query DashboardV2Widget Group Definition Widget Sunburst Definition Request Network Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- process_
query DashboardV2Widget 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[Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Query] - A list of queries to use in the widget.
- rum_
query DashboardV2Widget Group Definition Widget Sunburst Definition Request Rum Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- security_
query DashboardV2Widget Group Definition Widget Sunburst Definition Request Security Query - The query to use for this widget. Deprecated. Use queries and formulas instead.
- sort
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Sort - The controls for sorting the widget. Only applicable for formula-style requests.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQuery, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Sunburst Definition Request Apm Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestApmQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQuery, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Sunburst Definition Request Audit Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBy, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupByArgs
- Facet string
- The facet name.
- Limit int
- The maximum number of items in the group.
- Sort
Query DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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 DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBySortQuery, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryGroupBySortQueryArgs
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- Aggregation string
- The aggregation method.
- Order string
- Widget sorting methods. Valid values are
asc,desc. - Facet string
- The facet name.
- aggregation string
- The aggregation method.
- order string
- Widget sorting methods. Valid values are
asc,desc. - facet string
- The facet name.
- aggregation String
- The aggregation method.
- order String
- Widget sorting methods. Valid values are
asc,desc. - facet String
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryMultiCompute, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestAuditQueryMultiComputeArgs
- Aggregation string
- The aggregation method.
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormula, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaArgs
- 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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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 []DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Limit - The options for limiting results returned.
- Number
Format DashboardV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format - Number formatting options for the formula.
- Style
Dashboard
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 DashboardMode 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<DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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 DashboardMode 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 DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Limit - The options for limiting results returned.
- number
Format DashboardV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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_ Dashboardmode_ 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[DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Limit - The options for limiting results returned.
- number_
format DashboardV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format - Number formatting options for the formula.
- style
Dashboard
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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptions, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaCellDisplayModeOptionsArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaConditionalFormat, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaConditionalFormatArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimit, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaLimitArgs
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormat, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatArgs
- Unit
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- Unit
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit - Unit of the number format.
- Unit
Scale DashboardV2Widget 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
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit - Unit of the number format.
- unit
Scale DashboardV2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Scale - The definition of
NumberFormatUnitScaleobject.
- unit
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit - Unit of the number format.
- unit_
scale DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnit, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitArgs
- Canonical
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- Canonical
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Canonical - Canonical Units
- Custom
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Custom - Use custom (non canonical metrics)
- canonical
Dashboard
V2Widget Group Definition Widget Sunburst Definition Request Formula Number Format Unit Canonical - Canonical Units
- custom
Dashboard
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)
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCanonical, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCanonicalArgs
- 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')
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCustom, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCustomArgs
- 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
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitScale, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaNumberFormatUnitScaleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaStyle, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestFormulaStyleArgs
- 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQuery, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryArgs
- Index string
- A comma separated-list of index names. Use
*to query all indexes at once. Multiple Indexes. - Compute
Query DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies List<DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- Group
Bies []DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By - Multiple
groupByblocks are allowed using the structure below. - Multi
Computes []DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies List<DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By> - Multiple
groupByblocks are allowed using the structure below. - multi
Computes List<DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group
Bies DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By[] - Multiple
groupByblocks are allowed using the structure below. - multi
Computes DashboardV2Widget 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 DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query Compute Query computeQueryormultiComputeis required. The map keys are listed below.- group_
bies Sequence[DashboardV2Widget Group Definition Widget Sunburst Definition Request Log Query Group By] - Multiple
groupByblocks are allowed using the structure below. - multi_
computes Sequence[DashboardV2Widget 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.
DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryComputeQuery, DashboardV2WidgetGroupDefinitionWidgetSunburstDefinitionRequestLogQueryComputeQueryArgs
- Aggregation string
- The aggregation method.
- 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.
Import
The pulumi import command can be used, for example:
$ pulumi import datadog:index/dashboardV2:DashboardV2 my_service_dashboard sv7-gyh-kas
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