ibm.LogsDashboard
Explore with Pulumi AI
Create, update, and delete logs_dashboards with this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const logsDashboardInstance = new ibm.LogsDashboard("logsDashboardInstance", {
instanceId: ibm_resource_instance.logs_instance.guid,
region: ibm_resource_instance.logs_instance.location,
description: "example dashboard description",
layout: {
sections: [{
id: {
value: "b9ca2f71-7d7c-10fb-1a08-c78912705095",
},
rows: [{
id: {
value: "70b12716-cb18-f933-5a89-3061734eaa2f",
},
appearance: {
height: 19,
},
widgets: [{
id: {
value: "6118b86d-860c-c2cb-0cdf-effd62e9f331",
},
title: "test",
description: "test",
definition: {
lineChart: {
legend: {
isVisible: true,
groupByQuery: true,
},
tooltip: {
showLabels: false,
type: "all",
},
queryDefinitions: [{
id: "13139dad-3d45-16e1-fce2-03517daa71c4",
colorScheme: "cold",
name: "Query 1",
isVisible: true,
scaleType: "linear",
resolution: {
bucketsPresented: 96,
},
seriesCountLimit: "20",
query: {
logs: {
groupBies: [],
aggregations: [{
min: {
observationField: {
keypaths: ["timestamp"],
scope: "metadata",
},
},
}],
groupBys: [{
keypaths: ["severity"],
scope: "metadata",
}],
},
},
}],
},
},
}],
}],
}],
},
filters: [
{
source: {
logs: {
operator: {
equals: {
selection: {
list: {},
},
},
},
observationField: {
keypaths: ["applicationname"],
scope: "label",
},
},
},
enabled: true,
collapsed: false,
},
{
source: {
logs: {
operator: {
equals: {
selection: {
all: {},
},
},
},
observationField: {
keypaths: ["subsystemname"],
scope: "label",
},
},
},
enabled: true,
collapsed: false,
},
],
relativeTimeFrame: "900s",
});
import pulumi
import pulumi_ibm as ibm
logs_dashboard_instance = ibm.LogsDashboard("logsDashboardInstance",
instance_id=ibm_resource_instance["logs_instance"]["guid"],
region=ibm_resource_instance["logs_instance"]["location"],
description="example dashboard description",
layout={
"sections": [{
"id": {
"value": "b9ca2f71-7d7c-10fb-1a08-c78912705095",
},
"rows": [{
"id": {
"value": "70b12716-cb18-f933-5a89-3061734eaa2f",
},
"appearance": {
"height": 19,
},
"widgets": [{
"id": {
"value": "6118b86d-860c-c2cb-0cdf-effd62e9f331",
},
"title": "test",
"description": "test",
"definition": {
"line_chart": {
"legend": {
"is_visible": True,
"group_by_query": True,
},
"tooltip": {
"show_labels": False,
"type": "all",
},
"query_definitions": [{
"id": "13139dad-3d45-16e1-fce2-03517daa71c4",
"color_scheme": "cold",
"name": "Query 1",
"is_visible": True,
"scale_type": "linear",
"resolution": {
"buckets_presented": 96,
},
"series_count_limit": "20",
"query": {
"logs": {
"group_bies": [],
"aggregations": [{
"min": {
"observation_field": {
"keypaths": ["timestamp"],
"scope": "metadata",
},
},
}],
"group_bys": [{
"keypaths": ["severity"],
"scope": "metadata",
}],
},
},
}],
},
},
}],
}],
}],
},
filters=[
{
"source": {
"logs": {
"operator": {
"equals": {
"selection": {
"list": {},
},
},
},
"observation_field": {
"keypaths": ["applicationname"],
"scope": "label",
},
},
},
"enabled": True,
"collapsed": False,
},
{
"source": {
"logs": {
"operator": {
"equals": {
"selection": {
"all": {},
},
},
},
"observation_field": {
"keypaths": ["subsystemname"],
"scope": "label",
},
},
},
"enabled": True,
"collapsed": False,
},
],
relative_time_frame="900s")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.NewLogsDashboard(ctx, "logsDashboardInstance", &ibm.LogsDashboardArgs{
InstanceId: pulumi.Any(ibm_resource_instance.Logs_instance.Guid),
Region: pulumi.Any(ibm_resource_instance.Logs_instance.Location),
Description: pulumi.String("example dashboard description"),
Layout: &ibm.LogsDashboardLayoutArgs{
Sections: ibm.LogsDashboardLayoutSectionArray{
&ibm.LogsDashboardLayoutSectionArgs{
Id: &ibm.LogsDashboardLayoutSectionIdArgs{
Value: pulumi.String("b9ca2f71-7d7c-10fb-1a08-c78912705095"),
},
Rows: ibm.LogsDashboardLayoutSectionRowArray{
&ibm.LogsDashboardLayoutSectionRowArgs{
Id: &ibm.LogsDashboardLayoutSectionRowIdArgs{
Value: pulumi.String("70b12716-cb18-f933-5a89-3061734eaa2f"),
},
Appearance: &ibm.LogsDashboardLayoutSectionRowAppearanceArgs{
Height: pulumi.Float64(19),
},
Widgets: ibm.LogsDashboardLayoutSectionRowWidgetArray{
&ibm.LogsDashboardLayoutSectionRowWidgetArgs{
Id: &ibm.LogsDashboardLayoutSectionRowWidgetIdArgs{
Value: pulumi.String("6118b86d-860c-c2cb-0cdf-effd62e9f331"),
},
Title: pulumi.String("test"),
Description: pulumi.String("test"),
Definition: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionArgs{
LineChart: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartArgs{
Legend: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartLegendArgs{
IsVisible: pulumi.Bool(true),
GroupByQuery: pulumi.Bool(true),
},
Tooltip: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartTooltipArgs{
ShowLabels: pulumi.Bool(false),
Type: pulumi.String("all"),
},
QueryDefinitions: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionArgs{
Id: pulumi.String("13139dad-3d45-16e1-fce2-03517daa71c4"),
ColorScheme: pulumi.String("cold"),
Name: pulumi.String("Query 1"),
IsVisible: pulumi.Bool(true),
ScaleType: pulumi.String("linear"),
Resolution: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionResolutionArgs{
BucketsPresented: pulumi.Float64(96),
},
SeriesCountLimit: pulumi.String("20"),
Query: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryArgs{
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsArgs{
GroupBies: pulumi.StringArray{},
Aggregations: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationArgs{
Min: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("timestamp"),
},
Scope: pulumi.String("metadata"),
},
},
},
},
GroupBys: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsGroupByArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsGroupByArgs{
Keypaths: pulumi.StringArray{
pulumi.String("severity"),
},
Scope: pulumi.String("metadata"),
},
},
},
},
},
},
},
},
},
},
},
},
},
},
},
Filters: ibm.LogsDashboardFilterArray{
&ibm.LogsDashboardFilterArgs{
Source: &ibm.LogsDashboardFilterSourceArgs{
Logs: &ibm.LogsDashboardFilterSourceLogsArgs{
Operator: &ibm.LogsDashboardFilterSourceLogsOperatorArgs{
Equals: &ibm.LogsDashboardFilterSourceLogsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs{
List: &ibm.LogsDashboardFilterSourceLogsOperatorEqualsSelectionListArgs{},
},
},
},
ObservationField: &ibm.LogsDashboardFilterSourceLogsObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("applicationname"),
},
Scope: pulumi.String("label"),
},
},
},
Enabled: pulumi.Bool(true),
Collapsed: pulumi.Bool(false),
},
&ibm.LogsDashboardFilterArgs{
Source: &ibm.LogsDashboardFilterSourceArgs{
Logs: &ibm.LogsDashboardFilterSourceLogsArgs{
Operator: &ibm.LogsDashboardFilterSourceLogsOperatorArgs{
Equals: &ibm.LogsDashboardFilterSourceLogsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardFilterSourceLogsOperatorEqualsSelectionAllArgs{},
},
},
},
ObservationField: &ibm.LogsDashboardFilterSourceLogsObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("subsystemname"),
},
Scope: pulumi.String("label"),
},
},
},
Enabled: pulumi.Bool(true),
Collapsed: pulumi.Bool(false),
},
},
RelativeTimeFrame: pulumi.String("900s"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var logsDashboardInstance = new Ibm.LogsDashboard("logsDashboardInstance", new()
{
InstanceId = ibm_resource_instance.Logs_instance.Guid,
Region = ibm_resource_instance.Logs_instance.Location,
Description = "example dashboard description",
Layout = new Ibm.Inputs.LogsDashboardLayoutArgs
{
Sections = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionArgs
{
Id = new Ibm.Inputs.LogsDashboardLayoutSectionIdArgs
{
Value = "b9ca2f71-7d7c-10fb-1a08-c78912705095",
},
Rows = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowArgs
{
Id = new Ibm.Inputs.LogsDashboardLayoutSectionRowIdArgs
{
Value = "70b12716-cb18-f933-5a89-3061734eaa2f",
},
Appearance = new Ibm.Inputs.LogsDashboardLayoutSectionRowAppearanceArgs
{
Height = 19,
},
Widgets = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetArgs
{
Id = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetIdArgs
{
Value = "6118b86d-860c-c2cb-0cdf-effd62e9f331",
},
Title = "test",
Description = "test",
Definition = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionArgs
{
LineChart = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartArgs
{
Legend = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartLegendArgs
{
IsVisible = true,
GroupByQuery = true,
},
Tooltip = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartTooltipArgs
{
ShowLabels = false,
Type = "all",
},
QueryDefinitions = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionArgs
{
Id = "13139dad-3d45-16e1-fce2-03517daa71c4",
ColorScheme = "cold",
Name = "Query 1",
IsVisible = true,
ScaleType = "linear",
Resolution = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionResolutionArgs
{
BucketsPresented = 96,
},
SeriesCountLimit = "20",
Query = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryArgs
{
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsArgs
{
GroupBies = new() { },
Aggregations = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationArgs
{
Min = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinObservationFieldArgs
{
Keypaths = new[]
{
"timestamp",
},
Scope = "metadata",
},
},
},
},
GroupBys = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsGroupByArgs
{
Keypaths = new[]
{
"severity",
},
Scope = "metadata",
},
},
},
},
},
},
},
},
},
},
},
},
},
},
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardFilterArgs
{
Source = new Ibm.Inputs.LogsDashboardFilterSourceArgs
{
Logs = new Ibm.Inputs.LogsDashboardFilterSourceLogsArgs
{
Operator = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs
{
List = null,
},
},
},
ObservationField = new Ibm.Inputs.LogsDashboardFilterSourceLogsObservationFieldArgs
{
Keypaths = new[]
{
"applicationname",
},
Scope = "label",
},
},
},
Enabled = true,
Collapsed = false,
},
new Ibm.Inputs.LogsDashboardFilterArgs
{
Source = new Ibm.Inputs.LogsDashboardFilterSourceArgs
{
Logs = new Ibm.Inputs.LogsDashboardFilterSourceLogsArgs
{
Operator = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs
{
All = null,
},
},
},
ObservationField = new Ibm.Inputs.LogsDashboardFilterSourceLogsObservationFieldArgs
{
Keypaths = new[]
{
"subsystemname",
},
Scope = "label",
},
},
},
Enabled = true,
Collapsed = false,
},
},
RelativeTimeFrame = "900s",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.LogsDashboard;
import com.pulumi.ibm.LogsDashboardArgs;
import com.pulumi.ibm.inputs.LogsDashboardLayoutArgs;
import com.pulumi.ibm.inputs.LogsDashboardFilterArgs;
import com.pulumi.ibm.inputs.LogsDashboardFilterSourceArgs;
import com.pulumi.ibm.inputs.LogsDashboardFilterSourceLogsArgs;
import com.pulumi.ibm.inputs.LogsDashboardFilterSourceLogsOperatorArgs;
import com.pulumi.ibm.inputs.LogsDashboardFilterSourceLogsOperatorEqualsArgs;
import com.pulumi.ibm.inputs.LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs;
import com.pulumi.ibm.inputs.LogsDashboardFilterSourceLogsOperatorEqualsSelectionListArgs;
import com.pulumi.ibm.inputs.LogsDashboardFilterSourceLogsObservationFieldArgs;
import com.pulumi.ibm.inputs.LogsDashboardFilterSourceLogsOperatorEqualsSelectionAllArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var logsDashboardInstance = new LogsDashboard("logsDashboardInstance", LogsDashboardArgs.builder()
.instanceId(ibm_resource_instance.logs_instance().guid())
.region(ibm_resource_instance.logs_instance().location())
.description("example dashboard description")
.layout(LogsDashboardLayoutArgs.builder()
.sections(LogsDashboardLayoutSectionArgs.builder()
.id(LogsDashboardLayoutSectionIdArgs.builder()
.value("b9ca2f71-7d7c-10fb-1a08-c78912705095")
.build())
.rows(LogsDashboardLayoutSectionRowArgs.builder()
.id(LogsDashboardLayoutSectionRowIdArgs.builder()
.value("70b12716-cb18-f933-5a89-3061734eaa2f")
.build())
.appearance(LogsDashboardLayoutSectionRowAppearanceArgs.builder()
.height(19)
.build())
.widgets(LogsDashboardLayoutSectionRowWidgetArgs.builder()
.id(LogsDashboardLayoutSectionRowWidgetIdArgs.builder()
.value("6118b86d-860c-c2cb-0cdf-effd62e9f331")
.build())
.title("test")
.description("test")
.definition(LogsDashboardLayoutSectionRowWidgetDefinitionArgs.builder()
.lineChart(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartArgs.builder()
.legend(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartLegendArgs.builder()
.isVisible(true)
.groupByQuery(true)
.build())
.tooltip(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartTooltipArgs.builder()
.showLabels(false)
.type("all")
.build())
.queryDefinitions(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionArgs.builder()
.id("13139dad-3d45-16e1-fce2-03517daa71c4")
.colorScheme("cold")
.name("Query 1")
.isVisible(true)
.scaleType("linear")
.resolution(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionResolutionArgs.builder()
.bucketsPresented(96)
.build())
.seriesCountLimit(20)
.query(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryArgs.builder()
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsArgs.builder()
.groupBies()
.aggregations(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationArgs.builder()
.min(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinObservationFieldArgs.builder()
.keypaths("timestamp")
.scope("metadata")
.build())
.build())
.build())
.groupBys(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsGroupByArgs.builder()
.keypaths("severity")
.scope("metadata")
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.filters(
LogsDashboardFilterArgs.builder()
.source(LogsDashboardFilterSourceArgs.builder()
.logs(LogsDashboardFilterSourceLogsArgs.builder()
.operator(LogsDashboardFilterSourceLogsOperatorArgs.builder()
.equals(LogsDashboardFilterSourceLogsOperatorEqualsArgs.builder()
.selection(LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs.builder()
.list()
.build())
.build())
.build())
.observationField(LogsDashboardFilterSourceLogsObservationFieldArgs.builder()
.keypaths("applicationname")
.scope("label")
.build())
.build())
.build())
.enabled(true)
.collapsed(false)
.build(),
LogsDashboardFilterArgs.builder()
.source(LogsDashboardFilterSourceArgs.builder()
.logs(LogsDashboardFilterSourceLogsArgs.builder()
.operator(LogsDashboardFilterSourceLogsOperatorArgs.builder()
.equals(LogsDashboardFilterSourceLogsOperatorEqualsArgs.builder()
.selection(LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs.builder()
.all()
.build())
.build())
.build())
.observationField(LogsDashboardFilterSourceLogsObservationFieldArgs.builder()
.keypaths("subsystemname")
.scope("label")
.build())
.build())
.build())
.enabled(true)
.collapsed(false)
.build())
.relativeTimeFrame("900s")
.build());
}
}
resources:
logsDashboardInstance:
type: ibm:LogsDashboard
properties:
instanceId: ${ibm_resource_instance.logs_instance.guid}
region: ${ibm_resource_instance.logs_instance.location}
description: example dashboard description
layout:
sections:
- id:
value: b9ca2f71-7d7c-10fb-1a08-c78912705095
rows:
- id:
value: 70b12716-cb18-f933-5a89-3061734eaa2f
appearance:
height: 19
widgets:
- id:
value: 6118b86d-860c-c2cb-0cdf-effd62e9f331
title: test
description: test
definition:
lineChart:
legend:
isVisible: true
groupByQuery: true
tooltip:
showLabels: false
type: all
queryDefinitions:
- id: 13139dad-3d45-16e1-fce2-03517daa71c4
colorScheme: cold
name: Query 1
isVisible: true
scaleType: linear
resolution:
bucketsPresented: 96
seriesCountLimit: 20
query:
logs:
groupBies: []
aggregations:
- min:
observationField:
keypaths:
- timestamp
scope: metadata
groupBys:
- keypaths:
- severity
scope: metadata
filters:
- source:
logs:
operator:
equals:
selection:
list: {}
observationField:
keypaths:
- applicationname
scope: label
enabled: true
collapsed: false
- source:
logs:
operator:
equals:
selection:
all: {}
observationField:
keypaths:
- subsystemname
scope: label
enabled: true
collapsed: false
relativeTimeFrame: 900s
Create LogsDashboard Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LogsDashboard(name: string, args: LogsDashboardArgs, opts?: CustomResourceOptions);
@overload
def LogsDashboard(resource_name: str,
args: LogsDashboardArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LogsDashboard(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
layout: Optional[LogsDashboardLayoutArgs] = None,
folder_path: Optional[LogsDashboardFolderPathArgs] = None,
href: Optional[str] = None,
false: Optional[LogsDashboardFalseArgs] = None,
filters: Optional[Sequence[LogsDashboardFilterArgs]] = None,
five_minutes: Optional[LogsDashboardFiveMinutesArgs] = None,
folder_id: Optional[LogsDashboardFolderIdArgs] = None,
absolute_time_frame: Optional[LogsDashboardAbsoluteTimeFrameArgs] = None,
endpoint_type: Optional[str] = None,
description: Optional[str] = None,
annotations: Optional[Sequence[LogsDashboardAnnotationArgs]] = None,
logs_dashboard_id: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
relative_time_frame: Optional[str] = None,
two_minutes: Optional[LogsDashboardTwoMinutesArgs] = None,
variables: Optional[Sequence[LogsDashboardVariableArgs]] = None)
func NewLogsDashboard(ctx *Context, name string, args LogsDashboardArgs, opts ...ResourceOption) (*LogsDashboard, error)
public LogsDashboard(string name, LogsDashboardArgs args, CustomResourceOptions? opts = null)
public LogsDashboard(String name, LogsDashboardArgs args)
public LogsDashboard(String name, LogsDashboardArgs args, CustomResourceOptions options)
type: ibm:LogsDashboard
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args LogsDashboardArgs
- 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 LogsDashboardArgs
- 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 LogsDashboardArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogsDashboardArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LogsDashboardArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var logsDashboardResource = new Ibm.LogsDashboard("logsDashboardResource", new()
{
InstanceId = "string",
Layout = new Ibm.Inputs.LogsDashboardLayoutArgs
{
Sections = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionArgs
{
Id = new Ibm.Inputs.LogsDashboardLayoutSectionIdArgs
{
Value = "string",
},
Href = "string",
Rows = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowArgs
{
Appearance = new Ibm.Inputs.LogsDashboardLayoutSectionRowAppearanceArgs
{
Height = 0,
},
Id = new Ibm.Inputs.LogsDashboardLayoutSectionRowIdArgs
{
Value = "string",
},
Href = "string",
Widgets = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetArgs
{
Definition = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionArgs
{
BarChart = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartArgs
{
ColorScheme = "string",
ColorsBy = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartColorsByArgs
{
Aggregation = null,
GroupBy = null,
Stack = null,
},
GroupNameTemplate = "string",
MaxBarsPerChart = 0,
Query = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryArgs
{
Dataprime = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeArgs
{
DataprimeQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeDataprimeQueryArgs
{
Text = "string",
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterArgs
{
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
},
GroupNames = new[]
{
"string",
},
StackedGroupName = "string",
},
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsArgs
{
Aggregation = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationArgs
{
Average = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationAverageArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationAverageObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Count = null,
CountDistinct = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountDistinctArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountDistinctObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Max = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMaxArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMaxObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Min = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMinArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMinObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Percentile = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationPercentileArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationPercentileObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Percent = 0,
},
Sum = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationSumArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationSumObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
GroupNamesFields = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsGroupNamesFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
LuceneQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsLuceneQueryArgs
{
Value = "string",
},
StackedGroupNameField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsStackedGroupNameFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsArgs
{
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
GroupNames = new[]
{
"string",
},
PromqlQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsPromqlQueryArgs
{
Value = "string",
},
StackedGroupName = "string",
},
},
ScaleType = "string",
SortBy = "string",
StackDefinition = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartStackDefinitionArgs
{
MaxSlicesPerBar = 0,
StackNameTemplate = "string",
},
Unit = "string",
XAxis = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxisArgs
{
Time = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxisTimeArgs
{
BucketsPresented = 0,
Interval = "string",
},
Value = null,
},
DataModeType = "string",
},
DataTable = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableArgs
{
Query = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryArgs
{
Dataprime = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeArgs
{
DataprimeQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeDataprimeQueryArgs
{
Text = "string",
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterArgs
{
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
},
},
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsArgs
{
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
Grouping = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingArgs
{
Aggregations = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationArgs
{
Aggregation = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationArgs
{
Average = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationAverageArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationAverageObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Count = null,
CountDistinct = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountDistinctArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountDistinctObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Max = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMaxArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMaxObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Min = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMinArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMinObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Percentile = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationPercentileArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationPercentileObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Percent = 0,
},
Sum = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationSumArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationSumObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
},
Id = "string",
IsVisible = false,
Name = "string",
},
},
GroupBys = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingGroupByArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
},
LuceneQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsLuceneQueryArgs
{
Value = "string",
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsArgs
{
PromqlQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsPromqlQueryArgs
{
Value = "string",
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
},
},
ResultsPerPage = 0,
RowStyle = "string",
Columns = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableColumnArgs
{
Field = "string",
Width = 0,
},
},
DataModeType = "string",
OrderBy = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableOrderByArgs
{
Field = "string",
OrderDirection = "string",
},
},
Gauge = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeArgs
{
Max = 0,
Min = 0,
Query = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryArgs
{
Dataprime = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeArgs
{
DataprimeQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeDataprimeQueryArgs
{
Text = "string",
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterArgs
{
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
},
},
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsArgs
{
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
LogsAggregation = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationArgs
{
Average = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationAverageArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationAverageObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Count = null,
CountDistinct = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountDistinctArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountDistinctObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Max = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMaxArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMaxObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Min = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMinArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMinObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Percentile = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationPercentileArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationPercentileObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Percent = 0,
},
Sum = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationSumArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationSumObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
},
LuceneQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLuceneQueryArgs
{
Value = "string",
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsArgs
{
Aggregation = "string",
PromqlQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsPromqlQueryArgs
{
Value = "string",
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
},
},
ShowInnerArc = false,
ShowOuterArc = false,
ThresholdBy = "string",
Unit = "string",
DataModeType = "string",
Thresholds = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeThresholdArgs
{
Color = "string",
From = 0,
},
},
},
HorizontalBarChart = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartArgs
{
ColorScheme = "string",
ColorsBy = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartColorsByArgs
{
Aggregation = null,
GroupBy = null,
Stack = null,
},
DataModeType = "string",
DisplayOnBar = false,
GroupNameTemplate = "string",
MaxBarsPerChart = 0,
Query = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryArgs
{
Dataprime = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeArgs
{
DataprimeQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeDataprimeQueryArgs
{
Text = "string",
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterArgs
{
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
},
GroupNames = new[]
{
"string",
},
StackedGroupName = "string",
},
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsArgs
{
Aggregation = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationArgs
{
Average = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationAverageArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationAverageObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Count = null,
CountDistinct = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountDistinctArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountDistinctObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Max = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMaxArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMaxObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Min = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMinArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMinObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Percentile = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationPercentileArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationPercentileObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Percent = 0,
},
Sum = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationSumArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationSumObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
GroupNamesFields = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsGroupNamesFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
LuceneQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsLuceneQueryArgs
{
Value = "string",
},
StackedGroupNameField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsStackedGroupNameFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsArgs
{
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
GroupNames = new[]
{
"string",
},
PromqlQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsPromqlQueryArgs
{
Value = "string",
},
StackedGroupName = "string",
},
},
ScaleType = "string",
SortBy = "string",
StackDefinition = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartStackDefinitionArgs
{
MaxSlicesPerBar = 0,
StackNameTemplate = "string",
},
Unit = "string",
YAxisViewBy = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartYAxisViewByArgs
{
Category = null,
Value = null,
},
},
LineChart = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartArgs
{
Legend = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartLegendArgs
{
GroupByQuery = false,
IsVisible = false,
Columns = new[]
{
"string",
},
},
Tooltip = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartTooltipArgs
{
ShowLabels = false,
Type = "string",
},
QueryDefinitions = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionArgs
{
Id = "string",
IsVisible = false,
Query = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryArgs
{
Dataprime = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeArgs
{
DataprimeQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeDataprimeQueryArgs
{
Text = "string",
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterArgs
{
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
},
},
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsArgs
{
Aggregations = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationArgs
{
Average = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationAverageArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationAverageObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Count = null,
CountDistinct = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountDistinctArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountDistinctObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Max = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMaxArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMaxObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Min = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Percentile = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationPercentileArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationPercentileObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Percent = 0,
},
Sum = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationSumArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationSumObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
},
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
GroupBies = new[]
{
"string",
},
GroupBys = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsGroupByArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
LuceneQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsLuceneQueryArgs
{
Value = "string",
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsArgs
{
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
PromqlQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsPromqlQueryArgs
{
Value = "string",
},
},
},
Resolution = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionResolutionArgs
{
BucketsPresented = 0,
Interval = "string",
},
ColorScheme = "string",
DataModeType = "string",
Name = "string",
ScaleType = "string",
SeriesCountLimit = "string",
SeriesNameTemplate = "string",
Unit = "string",
},
},
StackedLine = "string",
},
Markdown = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionMarkdownArgs
{
MarkdownText = "string",
TooltipText = "string",
},
PieChart = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartArgs
{
ColorScheme = "string",
LabelDefinition = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartLabelDefinitionArgs
{
IsVisible = false,
LabelSource = "string",
ShowName = false,
ShowPercentage = false,
ShowValue = false,
},
MaxSlicesPerChart = 0,
MinSlicePercentage = 0,
Query = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryArgs
{
Dataprime = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeArgs
{
DataprimeQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeDataprimeQueryArgs
{
Text = "string",
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterArgs
{
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
},
GroupNames = new[]
{
"string",
},
StackedGroupName = "string",
},
Logs = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsArgs
{
Aggregation = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationArgs
{
Average = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationAverageArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationAverageObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Count = null,
CountDistinct = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountDistinctArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountDistinctObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Max = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMaxArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMaxObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Min = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMinArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMinObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Percentile = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationPercentileArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationPercentileObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Percent = 0,
},
Sum = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationSumArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationSumObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
GroupNamesFields = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsGroupNamesFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
LuceneQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsLuceneQueryArgs
{
Value = "string",
},
StackedGroupNameField = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsStackedGroupNameFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Metrics = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsArgs
{
PromqlQuery = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsPromqlQueryArgs
{
Value = "string",
},
Filters = new[]
{
new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
GroupNames = new[]
{
"string",
},
StackedGroupName = "string",
},
},
ShowLegend = false,
StackDefinition = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartStackDefinitionArgs
{
MaxSlicesPerStack = 0,
StackNameTemplate = "string",
},
DataModeType = "string",
GroupNameTemplate = "string",
Unit = "string",
},
},
Id = new Ibm.Inputs.LogsDashboardLayoutSectionRowWidgetIdArgs
{
Value = "string",
},
Title = "string",
CreatedAt = "string",
Description = "string",
Href = "string",
UpdatedAt = "string",
},
},
},
},
},
},
},
FolderPath = new Ibm.Inputs.LogsDashboardFolderPathArgs
{
Segments = new[]
{
"string",
},
},
Href = "string",
False = null,
Filters = new[]
{
new Ibm.Inputs.LogsDashboardFilterArgs
{
Collapsed = false,
Enabled = false,
Source = new Ibm.Inputs.LogsDashboardFilterSourceArgs
{
Logs = new Ibm.Inputs.LogsDashboardFilterSourceLogsArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardFilterSourceLogsObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
Operator = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardFilterSourceLogsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
Metrics = new Ibm.Inputs.LogsDashboardFilterSourceMetricsArgs
{
Label = "string",
Operator = new Ibm.Inputs.LogsDashboardFilterSourceMetricsOperatorArgs
{
Equals = new Ibm.Inputs.LogsDashboardFilterSourceMetricsOperatorEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardFilterSourceMetricsOperatorEqualsSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardFilterSourceMetricsOperatorEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
NotEquals = new Ibm.Inputs.LogsDashboardFilterSourceMetricsOperatorNotEqualsArgs
{
Selection = new Ibm.Inputs.LogsDashboardFilterSourceMetricsOperatorNotEqualsSelectionArgs
{
List = new Ibm.Inputs.LogsDashboardFilterSourceMetricsOperatorNotEqualsSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
},
},
},
},
},
},
FiveMinutes = null,
FolderId = new Ibm.Inputs.LogsDashboardFolderIdArgs
{
Value = "string",
},
AbsoluteTimeFrame = new Ibm.Inputs.LogsDashboardAbsoluteTimeFrameArgs
{
From = "string",
To = "string",
},
EndpointType = "string",
Description = "string",
Annotations = new[]
{
new Ibm.Inputs.LogsDashboardAnnotationArgs
{
Enabled = false,
Id = "string",
Name = "string",
Source = new Ibm.Inputs.LogsDashboardAnnotationSourceArgs
{
Logs = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsArgs
{
LuceneQuery = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsLuceneQueryArgs
{
Value = "string",
},
Strategy = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsStrategyArgs
{
Duration = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsStrategyDurationArgs
{
DurationField = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsStrategyDurationDurationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
StartTimestampField = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsStrategyDurationStartTimestampFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Instant = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsStrategyInstantArgs
{
TimestampField = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsStrategyInstantTimestampFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
Range = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsStrategyRangeArgs
{
EndTimestampField = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsStrategyRangeEndTimestampFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
StartTimestampField = new Ibm.Inputs.LogsDashboardAnnotationSourceLogsStrategyRangeStartTimestampFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
},
LabelFields = new[]
{
new Ibm.Inputs.LogsDashboardAnnotationSourceLogsLabelFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
MessageTemplate = "string",
},
Metrics = new Ibm.Inputs.LogsDashboardAnnotationSourceMetricsArgs
{
Labels = new[]
{
"string",
},
MessageTemplate = "string",
PromqlQuery = new Ibm.Inputs.LogsDashboardAnnotationSourceMetricsPromqlQueryArgs
{
Value = "string",
},
Strategy = new Ibm.Inputs.LogsDashboardAnnotationSourceMetricsStrategyArgs
{
StartTimeMetric = null,
},
},
},
Href = "string",
},
},
LogsDashboardId = "string",
Name = "string",
Region = "string",
RelativeTimeFrame = "string",
TwoMinutes = null,
Variables = new[]
{
new Ibm.Inputs.LogsDashboardVariableArgs
{
Definition = new Ibm.Inputs.LogsDashboardVariableDefinitionArgs
{
MultiSelect = new Ibm.Inputs.LogsDashboardVariableDefinitionMultiSelectArgs
{
Selection = new Ibm.Inputs.LogsDashboardVariableDefinitionMultiSelectSelectionArgs
{
All = null,
List = new Ibm.Inputs.LogsDashboardVariableDefinitionMultiSelectSelectionListArgs
{
Values = new[]
{
"string",
},
},
},
Source = new Ibm.Inputs.LogsDashboardVariableDefinitionMultiSelectSourceArgs
{
ConstantList = new Ibm.Inputs.LogsDashboardVariableDefinitionMultiSelectSourceConstantListArgs
{
Values = new[]
{
"string",
},
},
LogsPath = new Ibm.Inputs.LogsDashboardVariableDefinitionMultiSelectSourceLogsPathArgs
{
ObservationField = new Ibm.Inputs.LogsDashboardVariableDefinitionMultiSelectSourceLogsPathObservationFieldArgs
{
Keypaths = new[]
{
"string",
},
Scope = "string",
},
},
MetricLabel = new Ibm.Inputs.LogsDashboardVariableDefinitionMultiSelectSourceMetricLabelArgs
{
Label = "string",
MetricName = "string",
},
},
ValuesOrderDirection = "string",
},
},
DisplayName = "string",
Name = "string",
},
},
});
example, err := ibm.NewLogsDashboard(ctx, "logsDashboardResource", &ibm.LogsDashboardArgs{
InstanceId: pulumi.String("string"),
Layout: &ibm.LogsDashboardLayoutArgs{
Sections: ibm.LogsDashboardLayoutSectionArray{
&ibm.LogsDashboardLayoutSectionArgs{
Id: &ibm.LogsDashboardLayoutSectionIdArgs{
Value: pulumi.String("string"),
},
Href: pulumi.String("string"),
Rows: ibm.LogsDashboardLayoutSectionRowArray{
&ibm.LogsDashboardLayoutSectionRowArgs{
Appearance: &ibm.LogsDashboardLayoutSectionRowAppearanceArgs{
Height: pulumi.Float64(0),
},
Id: &ibm.LogsDashboardLayoutSectionRowIdArgs{
Value: pulumi.String("string"),
},
Href: pulumi.String("string"),
Widgets: ibm.LogsDashboardLayoutSectionRowWidgetArray{
&ibm.LogsDashboardLayoutSectionRowWidgetArgs{
Definition: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionArgs{
BarChart: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartArgs{
ColorScheme: pulumi.String("string"),
ColorsBy: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartColorsByArgs{
Aggregation: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartColorsByAggregationArgs{},
GroupBy: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartColorsByGroupByArgs{},
Stack: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartColorsByStackArgs{},
},
GroupNameTemplate: pulumi.String("string"),
MaxBarsPerChart: pulumi.Float64(0),
Query: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryArgs{
Dataprime: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeArgs{
DataprimeQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeDataprimeQueryArgs{
Text: pulumi.String("string"),
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterArgs{
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
},
GroupNames: pulumi.StringArray{
pulumi.String("string"),
},
StackedGroupName: pulumi.String("string"),
},
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsArgs{
Aggregation: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationArgs{
Average: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationAverageArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationAverageObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Count: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountArgs{},
CountDistinct: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountDistinctArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountDistinctObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Max: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMaxArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMaxObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Min: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMinArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMinObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Percentile: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationPercentileArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationPercentileObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Percent: pulumi.Float64(0),
},
Sum: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationSumArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationSumObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
GroupNamesFields: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsGroupNamesFieldArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsGroupNamesFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
LuceneQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsLuceneQueryArgs{
Value: pulumi.String("string"),
},
StackedGroupNameField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsStackedGroupNameFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsArgs{
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
GroupNames: pulumi.StringArray{
pulumi.String("string"),
},
PromqlQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsPromqlQueryArgs{
Value: pulumi.String("string"),
},
StackedGroupName: pulumi.String("string"),
},
},
ScaleType: pulumi.String("string"),
SortBy: pulumi.String("string"),
StackDefinition: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartStackDefinitionArgs{
MaxSlicesPerBar: pulumi.Float64(0),
StackNameTemplate: pulumi.String("string"),
},
Unit: pulumi.String("string"),
XAxis: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxisArgs{
Time: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxisTimeArgs{
BucketsPresented: pulumi.Float64(0),
Interval: pulumi.String("string"),
},
Value: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxisValueArgs{},
},
DataModeType: pulumi.String("string"),
},
DataTable: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableArgs{
Query: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryArgs{
Dataprime: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeArgs{
DataprimeQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeDataprimeQueryArgs{
Text: pulumi.String("string"),
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterArgs{
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
},
},
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsArgs{
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
Grouping: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingArgs{
Aggregations: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationArgs{
Aggregation: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationArgs{
Average: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationAverageArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationAverageObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Count: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountArgs{},
CountDistinct: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountDistinctArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountDistinctObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Max: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMaxArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMaxObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Min: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMinArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMinObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Percentile: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationPercentileArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationPercentileObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Percent: pulumi.Float64(0),
},
Sum: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationSumArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationSumObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
},
Id: pulumi.String("string"),
IsVisible: pulumi.Bool(false),
Name: pulumi.String("string"),
},
},
GroupBys: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingGroupByArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingGroupByArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
},
LuceneQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsLuceneQueryArgs{
Value: pulumi.String("string"),
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsArgs{
PromqlQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsPromqlQueryArgs{
Value: pulumi.String("string"),
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
},
},
ResultsPerPage: pulumi.Float64(0),
RowStyle: pulumi.String("string"),
Columns: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableColumnArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableColumnArgs{
Field: pulumi.String("string"),
Width: pulumi.Float64(0),
},
},
DataModeType: pulumi.String("string"),
OrderBy: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionDataTableOrderByArgs{
Field: pulumi.String("string"),
OrderDirection: pulumi.String("string"),
},
},
Gauge: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeArgs{
Max: pulumi.Float64(0),
Min: pulumi.Float64(0),
Query: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryArgs{
Dataprime: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeArgs{
DataprimeQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeDataprimeQueryArgs{
Text: pulumi.String("string"),
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterArgs{
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
},
},
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsArgs{
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
LogsAggregation: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationArgs{
Average: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationAverageArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationAverageObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Count: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountArgs{},
CountDistinct: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountDistinctArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountDistinctObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Max: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMaxArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMaxObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Min: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMinArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMinObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Percentile: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationPercentileArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationPercentileObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Percent: pulumi.Float64(0),
},
Sum: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationSumArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationSumObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
},
LuceneQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLuceneQueryArgs{
Value: pulumi.String("string"),
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsArgs{
Aggregation: pulumi.String("string"),
PromqlQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsPromqlQueryArgs{
Value: pulumi.String("string"),
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
},
},
ShowInnerArc: pulumi.Bool(false),
ShowOuterArc: pulumi.Bool(false),
ThresholdBy: pulumi.String("string"),
Unit: pulumi.String("string"),
DataModeType: pulumi.String("string"),
Thresholds: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeThresholdArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionGaugeThresholdArgs{
Color: pulumi.String("string"),
From: pulumi.Float64(0),
},
},
},
HorizontalBarChart: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartArgs{
ColorScheme: pulumi.String("string"),
ColorsBy: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartColorsByArgs{
Aggregation: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartColorsByAggregationArgs{},
GroupBy: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartColorsByGroupByArgs{},
Stack: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartColorsByStackArgs{},
},
DataModeType: pulumi.String("string"),
DisplayOnBar: pulumi.Bool(false),
GroupNameTemplate: pulumi.String("string"),
MaxBarsPerChart: pulumi.Float64(0),
Query: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryArgs{
Dataprime: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeArgs{
DataprimeQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeDataprimeQueryArgs{
Text: pulumi.String("string"),
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterArgs{
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
},
GroupNames: pulumi.StringArray{
pulumi.String("string"),
},
StackedGroupName: pulumi.String("string"),
},
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsArgs{
Aggregation: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationArgs{
Average: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationAverageArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationAverageObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Count: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountArgs{},
CountDistinct: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountDistinctArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountDistinctObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Max: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMaxArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMaxObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Min: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMinArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMinObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Percentile: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationPercentileArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationPercentileObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Percent: pulumi.Float64(0),
},
Sum: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationSumArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationSumObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
GroupNamesFields: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsGroupNamesFieldArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsGroupNamesFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
LuceneQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsLuceneQueryArgs{
Value: pulumi.String("string"),
},
StackedGroupNameField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsStackedGroupNameFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsArgs{
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
GroupNames: pulumi.StringArray{
pulumi.String("string"),
},
PromqlQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsPromqlQueryArgs{
Value: pulumi.String("string"),
},
StackedGroupName: pulumi.String("string"),
},
},
ScaleType: pulumi.String("string"),
SortBy: pulumi.String("string"),
StackDefinition: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartStackDefinitionArgs{
MaxSlicesPerBar: pulumi.Float64(0),
StackNameTemplate: pulumi.String("string"),
},
Unit: pulumi.String("string"),
YAxisViewBy: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartYAxisViewByArgs{
Category: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartYAxisViewByCategoryArgs{},
Value: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartYAxisViewByValueArgs{},
},
},
LineChart: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartArgs{
Legend: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartLegendArgs{
GroupByQuery: pulumi.Bool(false),
IsVisible: pulumi.Bool(false),
Columns: pulumi.StringArray{
pulumi.String("string"),
},
},
Tooltip: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartTooltipArgs{
ShowLabels: pulumi.Bool(false),
Type: pulumi.String("string"),
},
QueryDefinitions: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionArgs{
Id: pulumi.String("string"),
IsVisible: pulumi.Bool(false),
Query: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryArgs{
Dataprime: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeArgs{
DataprimeQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeDataprimeQueryArgs{
Text: pulumi.String("string"),
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterArgs{
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
},
},
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsArgs{
Aggregations: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationArgs{
Average: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationAverageArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationAverageObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Count: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountArgs{},
CountDistinct: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountDistinctArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountDistinctObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Max: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMaxArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMaxObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Min: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Percentile: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationPercentileArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationPercentileObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Percent: pulumi.Float64(0),
},
Sum: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationSumArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationSumObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
},
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
GroupBies: pulumi.StringArray{
pulumi.String("string"),
},
GroupBys: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsGroupByArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsGroupByArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
LuceneQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsLuceneQueryArgs{
Value: pulumi.String("string"),
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsArgs{
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
PromqlQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsPromqlQueryArgs{
Value: pulumi.String("string"),
},
},
},
Resolution: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionResolutionArgs{
BucketsPresented: pulumi.Float64(0),
Interval: pulumi.String("string"),
},
ColorScheme: pulumi.String("string"),
DataModeType: pulumi.String("string"),
Name: pulumi.String("string"),
ScaleType: pulumi.String("string"),
SeriesCountLimit: pulumi.String("string"),
SeriesNameTemplate: pulumi.String("string"),
Unit: pulumi.String("string"),
},
},
StackedLine: pulumi.String("string"),
},
Markdown: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionMarkdownArgs{
MarkdownText: pulumi.String("string"),
TooltipText: pulumi.String("string"),
},
PieChart: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartArgs{
ColorScheme: pulumi.String("string"),
LabelDefinition: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartLabelDefinitionArgs{
IsVisible: pulumi.Bool(false),
LabelSource: pulumi.String("string"),
ShowName: pulumi.Bool(false),
ShowPercentage: pulumi.Bool(false),
ShowValue: pulumi.Bool(false),
},
MaxSlicesPerChart: pulumi.Float64(0),
MinSlicePercentage: pulumi.Float64(0),
Query: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryArgs{
Dataprime: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeArgs{
DataprimeQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeDataprimeQueryArgs{
Text: pulumi.String("string"),
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterArgs{
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
},
GroupNames: pulumi.StringArray{
pulumi.String("string"),
},
StackedGroupName: pulumi.String("string"),
},
Logs: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsArgs{
Aggregation: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationArgs{
Average: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationAverageArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationAverageObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Count: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountArgs{},
CountDistinct: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountDistinctArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountDistinctObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Max: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMaxArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMaxObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Min: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMinArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMinObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Percentile: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationPercentileArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationPercentileObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Percent: pulumi.Float64(0),
},
Sum: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationSumArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationSumObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterArgs{
ObservationField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
GroupNamesFields: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsGroupNamesFieldArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsGroupNamesFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
LuceneQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsLuceneQueryArgs{
Value: pulumi.String("string"),
},
StackedGroupNameField: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsStackedGroupNameFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Metrics: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsArgs{
PromqlQuery: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsPromqlQueryArgs{
Value: pulumi.String("string"),
},
Filters: ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterArray{
&ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorArgs{
Equals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
GroupNames: pulumi.StringArray{
pulumi.String("string"),
},
StackedGroupName: pulumi.String("string"),
},
},
ShowLegend: pulumi.Bool(false),
StackDefinition: &ibm.LogsDashboardLayoutSectionRowWidgetDefinitionPieChartStackDefinitionArgs{
MaxSlicesPerStack: pulumi.Float64(0),
StackNameTemplate: pulumi.String("string"),
},
DataModeType: pulumi.String("string"),
GroupNameTemplate: pulumi.String("string"),
Unit: pulumi.String("string"),
},
},
Id: &ibm.LogsDashboardLayoutSectionRowWidgetIdArgs{
Value: pulumi.String("string"),
},
Title: pulumi.String("string"),
CreatedAt: pulumi.String("string"),
Description: pulumi.String("string"),
Href: pulumi.String("string"),
UpdatedAt: pulumi.String("string"),
},
},
},
},
},
},
},
FolderPath: &ibm.LogsDashboardFolderPathArgs{
Segments: pulumi.StringArray{
pulumi.String("string"),
},
},
Href: pulumi.String("string"),
False: &ibm.LogsDashboardFalseArgs{},
Filters: ibm.LogsDashboardFilterArray{
&ibm.LogsDashboardFilterArgs{
Collapsed: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
Source: &ibm.LogsDashboardFilterSourceArgs{
Logs: &ibm.LogsDashboardFilterSourceLogsArgs{
ObservationField: &ibm.LogsDashboardFilterSourceLogsObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
Operator: &ibm.LogsDashboardFilterSourceLogsOperatorArgs{
Equals: &ibm.LogsDashboardFilterSourceLogsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardFilterSourceLogsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardFilterSourceLogsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardFilterSourceLogsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardFilterSourceLogsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardFilterSourceLogsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
Metrics: &ibm.LogsDashboardFilterSourceMetricsArgs{
Label: pulumi.String("string"),
Operator: &ibm.LogsDashboardFilterSourceMetricsOperatorArgs{
Equals: &ibm.LogsDashboardFilterSourceMetricsOperatorEqualsArgs{
Selection: &ibm.LogsDashboardFilterSourceMetricsOperatorEqualsSelectionArgs{
All: &ibm.LogsDashboardFilterSourceMetricsOperatorEqualsSelectionAllArgs{},
List: &ibm.LogsDashboardFilterSourceMetricsOperatorEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NotEquals: &ibm.LogsDashboardFilterSourceMetricsOperatorNotEqualsArgs{
Selection: &ibm.LogsDashboardFilterSourceMetricsOperatorNotEqualsSelectionArgs{
List: &ibm.LogsDashboardFilterSourceMetricsOperatorNotEqualsSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
},
},
},
FiveMinutes: &ibm.LogsDashboardFiveMinutesArgs{},
FolderId: &ibm.LogsDashboardFolderIdArgs{
Value: pulumi.String("string"),
},
AbsoluteTimeFrame: &ibm.LogsDashboardAbsoluteTimeFrameArgs{
From: pulumi.String("string"),
To: pulumi.String("string"),
},
EndpointType: pulumi.String("string"),
Description: pulumi.String("string"),
Annotations: ibm.LogsDashboardAnnotationArray{
&ibm.LogsDashboardAnnotationArgs{
Enabled: pulumi.Bool(false),
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Source: &ibm.LogsDashboardAnnotationSourceArgs{
Logs: &ibm.LogsDashboardAnnotationSourceLogsArgs{
LuceneQuery: &ibm.LogsDashboardAnnotationSourceLogsLuceneQueryArgs{
Value: pulumi.String("string"),
},
Strategy: &ibm.LogsDashboardAnnotationSourceLogsStrategyArgs{
Duration: &ibm.LogsDashboardAnnotationSourceLogsStrategyDurationArgs{
DurationField: &ibm.LogsDashboardAnnotationSourceLogsStrategyDurationDurationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
StartTimestampField: &ibm.LogsDashboardAnnotationSourceLogsStrategyDurationStartTimestampFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Instant: &ibm.LogsDashboardAnnotationSourceLogsStrategyInstantArgs{
TimestampField: &ibm.LogsDashboardAnnotationSourceLogsStrategyInstantTimestampFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
Range: &ibm.LogsDashboardAnnotationSourceLogsStrategyRangeArgs{
EndTimestampField: &ibm.LogsDashboardAnnotationSourceLogsStrategyRangeEndTimestampFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
StartTimestampField: &ibm.LogsDashboardAnnotationSourceLogsStrategyRangeStartTimestampFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
},
LabelFields: ibm.LogsDashboardAnnotationSourceLogsLabelFieldArray{
&ibm.LogsDashboardAnnotationSourceLogsLabelFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
MessageTemplate: pulumi.String("string"),
},
Metrics: &ibm.LogsDashboardAnnotationSourceMetricsArgs{
Labels: pulumi.StringArray{
pulumi.String("string"),
},
MessageTemplate: pulumi.String("string"),
PromqlQuery: &ibm.LogsDashboardAnnotationSourceMetricsPromqlQueryArgs{
Value: pulumi.String("string"),
},
Strategy: &ibm.LogsDashboardAnnotationSourceMetricsStrategyArgs{
StartTimeMetric: &ibm.LogsDashboardAnnotationSourceMetricsStrategyStartTimeMetricArgs{},
},
},
},
Href: pulumi.String("string"),
},
},
LogsDashboardId: pulumi.String("string"),
Name: pulumi.String("string"),
Region: pulumi.String("string"),
RelativeTimeFrame: pulumi.String("string"),
TwoMinutes: &ibm.LogsDashboardTwoMinutesArgs{},
Variables: ibm.LogsDashboardVariableArray{
&ibm.LogsDashboardVariableArgs{
Definition: &ibm.LogsDashboardVariableDefinitionArgs{
MultiSelect: &ibm.LogsDashboardVariableDefinitionMultiSelectArgs{
Selection: &ibm.LogsDashboardVariableDefinitionMultiSelectSelectionArgs{
All: &ibm.LogsDashboardVariableDefinitionMultiSelectSelectionAllArgs{},
List: &ibm.LogsDashboardVariableDefinitionMultiSelectSelectionListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Source: &ibm.LogsDashboardVariableDefinitionMultiSelectSourceArgs{
ConstantList: &ibm.LogsDashboardVariableDefinitionMultiSelectSourceConstantListArgs{
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
LogsPath: &ibm.LogsDashboardVariableDefinitionMultiSelectSourceLogsPathArgs{
ObservationField: &ibm.LogsDashboardVariableDefinitionMultiSelectSourceLogsPathObservationFieldArgs{
Keypaths: pulumi.StringArray{
pulumi.String("string"),
},
Scope: pulumi.String("string"),
},
},
MetricLabel: &ibm.LogsDashboardVariableDefinitionMultiSelectSourceMetricLabelArgs{
Label: pulumi.String("string"),
MetricName: pulumi.String("string"),
},
},
ValuesOrderDirection: pulumi.String("string"),
},
},
DisplayName: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
})
var logsDashboardResource = new LogsDashboard("logsDashboardResource", LogsDashboardArgs.builder()
.instanceId("string")
.layout(LogsDashboardLayoutArgs.builder()
.sections(LogsDashboardLayoutSectionArgs.builder()
.id(LogsDashboardLayoutSectionIdArgs.builder()
.value("string")
.build())
.href("string")
.rows(LogsDashboardLayoutSectionRowArgs.builder()
.appearance(LogsDashboardLayoutSectionRowAppearanceArgs.builder()
.height(0)
.build())
.id(LogsDashboardLayoutSectionRowIdArgs.builder()
.value("string")
.build())
.href("string")
.widgets(LogsDashboardLayoutSectionRowWidgetArgs.builder()
.definition(LogsDashboardLayoutSectionRowWidgetDefinitionArgs.builder()
.barChart(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartArgs.builder()
.colorScheme("string")
.colorsBy(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartColorsByArgs.builder()
.aggregation()
.groupBy()
.stack()
.build())
.groupNameTemplate("string")
.maxBarsPerChart(0)
.query(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryArgs.builder()
.dataprime(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeArgs.builder()
.dataprimeQuery(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeDataprimeQueryArgs.builder()
.text("string")
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterArgs.builder()
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.build())
.groupNames("string")
.stackedGroupName("string")
.build())
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsArgs.builder()
.aggregation(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationArgs.builder()
.average(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationAverageArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationAverageObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.count()
.countDistinct(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountDistinctArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountDistinctObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.max(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMaxArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMaxObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.min(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMinArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMinObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.percentile(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationPercentileArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationPercentileObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.percent(0)
.build())
.sum(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationSumArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationSumObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.groupNamesFields(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsGroupNamesFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.luceneQuery(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsLuceneQueryArgs.builder()
.value("string")
.build())
.stackedGroupNameField(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsStackedGroupNameFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsArgs.builder()
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.groupNames("string")
.promqlQuery(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsPromqlQueryArgs.builder()
.value("string")
.build())
.stackedGroupName("string")
.build())
.build())
.scaleType("string")
.sortBy("string")
.stackDefinition(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartStackDefinitionArgs.builder()
.maxSlicesPerBar(0)
.stackNameTemplate("string")
.build())
.unit("string")
.xAxis(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxisArgs.builder()
.time(LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxisTimeArgs.builder()
.bucketsPresented(0)
.interval("string")
.build())
.value()
.build())
.dataModeType("string")
.build())
.dataTable(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableArgs.builder()
.query(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryArgs.builder()
.dataprime(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeArgs.builder()
.dataprimeQuery(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeDataprimeQueryArgs.builder()
.text("string")
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterArgs.builder()
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsArgs.builder()
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.grouping(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingArgs.builder()
.aggregations(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationArgs.builder()
.aggregation(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationArgs.builder()
.average(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationAverageArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationAverageObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.count()
.countDistinct(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountDistinctArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountDistinctObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.max(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMaxArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMaxObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.min(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMinArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMinObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.percentile(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationPercentileArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationPercentileObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.percent(0)
.build())
.sum(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationSumArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationSumObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.build())
.id("string")
.isVisible(false)
.name("string")
.build())
.groupBys(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingGroupByArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.luceneQuery(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsLuceneQueryArgs.builder()
.value("string")
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsArgs.builder()
.promqlQuery(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsPromqlQueryArgs.builder()
.value("string")
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.resultsPerPage(0)
.rowStyle("string")
.columns(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableColumnArgs.builder()
.field("string")
.width(0)
.build())
.dataModeType("string")
.orderBy(LogsDashboardLayoutSectionRowWidgetDefinitionDataTableOrderByArgs.builder()
.field("string")
.orderDirection("string")
.build())
.build())
.gauge(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeArgs.builder()
.max(0)
.min(0)
.query(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryArgs.builder()
.dataprime(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeArgs.builder()
.dataprimeQuery(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeDataprimeQueryArgs.builder()
.text("string")
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterArgs.builder()
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsArgs.builder()
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.logsAggregation(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationArgs.builder()
.average(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationAverageArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationAverageObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.count()
.countDistinct(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountDistinctArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountDistinctObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.max(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMaxArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMaxObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.min(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMinArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMinObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.percentile(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationPercentileArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationPercentileObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.percent(0)
.build())
.sum(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationSumArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationSumObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.build())
.luceneQuery(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLuceneQueryArgs.builder()
.value("string")
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsArgs.builder()
.aggregation("string")
.promqlQuery(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsPromqlQueryArgs.builder()
.value("string")
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.showInnerArc(false)
.showOuterArc(false)
.thresholdBy("string")
.unit("string")
.dataModeType("string")
.thresholds(LogsDashboardLayoutSectionRowWidgetDefinitionGaugeThresholdArgs.builder()
.color("string")
.from(0)
.build())
.build())
.horizontalBarChart(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartArgs.builder()
.colorScheme("string")
.colorsBy(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartColorsByArgs.builder()
.aggregation()
.groupBy()
.stack()
.build())
.dataModeType("string")
.displayOnBar(false)
.groupNameTemplate("string")
.maxBarsPerChart(0)
.query(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryArgs.builder()
.dataprime(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeArgs.builder()
.dataprimeQuery(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeDataprimeQueryArgs.builder()
.text("string")
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterArgs.builder()
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.build())
.groupNames("string")
.stackedGroupName("string")
.build())
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsArgs.builder()
.aggregation(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationArgs.builder()
.average(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationAverageArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationAverageObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.count()
.countDistinct(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountDistinctArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountDistinctObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.max(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMaxArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMaxObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.min(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMinArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMinObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.percentile(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationPercentileArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationPercentileObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.percent(0)
.build())
.sum(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationSumArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationSumObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.groupNamesFields(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsGroupNamesFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.luceneQuery(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsLuceneQueryArgs.builder()
.value("string")
.build())
.stackedGroupNameField(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsStackedGroupNameFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsArgs.builder()
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.groupNames("string")
.promqlQuery(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsPromqlQueryArgs.builder()
.value("string")
.build())
.stackedGroupName("string")
.build())
.build())
.scaleType("string")
.sortBy("string")
.stackDefinition(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartStackDefinitionArgs.builder()
.maxSlicesPerBar(0)
.stackNameTemplate("string")
.build())
.unit("string")
.yAxisViewBy(LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartYAxisViewByArgs.builder()
.category()
.value()
.build())
.build())
.lineChart(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartArgs.builder()
.legend(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartLegendArgs.builder()
.groupByQuery(false)
.isVisible(false)
.columns("string")
.build())
.tooltip(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartTooltipArgs.builder()
.showLabels(false)
.type("string")
.build())
.queryDefinitions(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionArgs.builder()
.id("string")
.isVisible(false)
.query(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryArgs.builder()
.dataprime(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeArgs.builder()
.dataprimeQuery(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeDataprimeQueryArgs.builder()
.text("string")
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterArgs.builder()
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsArgs.builder()
.aggregations(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationArgs.builder()
.average(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationAverageArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationAverageObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.count()
.countDistinct(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountDistinctArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountDistinctObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.max(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMaxArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMaxObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.min(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.percentile(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationPercentileArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationPercentileObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.percent(0)
.build())
.sum(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationSumArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationSumObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.groupBies("string")
.groupBys(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsGroupByArgs.builder()
.keypaths("string")
.scope("string")
.build())
.luceneQuery(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsLuceneQueryArgs.builder()
.value("string")
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsArgs.builder()
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.promqlQuery(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsPromqlQueryArgs.builder()
.value("string")
.build())
.build())
.build())
.resolution(LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionResolutionArgs.builder()
.bucketsPresented(0)
.interval("string")
.build())
.colorScheme("string")
.dataModeType("string")
.name("string")
.scaleType("string")
.seriesCountLimit("string")
.seriesNameTemplate("string")
.unit("string")
.build())
.stackedLine("string")
.build())
.markdown(LogsDashboardLayoutSectionRowWidgetDefinitionMarkdownArgs.builder()
.markdownText("string")
.tooltipText("string")
.build())
.pieChart(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartArgs.builder()
.colorScheme("string")
.labelDefinition(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartLabelDefinitionArgs.builder()
.isVisible(false)
.labelSource("string")
.showName(false)
.showPercentage(false)
.showValue(false)
.build())
.maxSlicesPerChart(0)
.minSlicePercentage(0)
.query(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryArgs.builder()
.dataprime(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeArgs.builder()
.dataprimeQuery(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeDataprimeQueryArgs.builder()
.text("string")
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterArgs.builder()
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.build())
.groupNames("string")
.stackedGroupName("string")
.build())
.logs(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsArgs.builder()
.aggregation(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationArgs.builder()
.average(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationAverageArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationAverageObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.count()
.countDistinct(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountDistinctArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountDistinctObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.max(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMaxArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMaxObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.min(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMinArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMinObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.percentile(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationPercentileArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationPercentileObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.percent(0)
.build())
.sum(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationSumArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationSumObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterArgs.builder()
.observationField(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.groupNamesFields(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsGroupNamesFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.luceneQuery(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsLuceneQueryArgs.builder()
.value("string")
.build())
.stackedGroupNameField(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsStackedGroupNameFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.metrics(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsArgs.builder()
.promqlQuery(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsPromqlQueryArgs.builder()
.value("string")
.build())
.filters(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterArgs.builder()
.label("string")
.operator(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorArgs.builder()
.equals(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsArgs.builder()
.selection(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.groupNames("string")
.stackedGroupName("string")
.build())
.build())
.showLegend(false)
.stackDefinition(LogsDashboardLayoutSectionRowWidgetDefinitionPieChartStackDefinitionArgs.builder()
.maxSlicesPerStack(0)
.stackNameTemplate("string")
.build())
.dataModeType("string")
.groupNameTemplate("string")
.unit("string")
.build())
.build())
.id(LogsDashboardLayoutSectionRowWidgetIdArgs.builder()
.value("string")
.build())
.title("string")
.createdAt("string")
.description("string")
.href("string")
.updatedAt("string")
.build())
.build())
.build())
.build())
.folderPath(LogsDashboardFolderPathArgs.builder()
.segments("string")
.build())
.href("string")
.false_()
.filters(LogsDashboardFilterArgs.builder()
.collapsed(false)
.enabled(false)
.source(LogsDashboardFilterSourceArgs.builder()
.logs(LogsDashboardFilterSourceLogsArgs.builder()
.observationField(LogsDashboardFilterSourceLogsObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.operator(LogsDashboardFilterSourceLogsOperatorArgs.builder()
.equals(LogsDashboardFilterSourceLogsOperatorEqualsArgs.builder()
.selection(LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardFilterSourceLogsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardFilterSourceLogsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardFilterSourceLogsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardFilterSourceLogsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.metrics(LogsDashboardFilterSourceMetricsArgs.builder()
.label("string")
.operator(LogsDashboardFilterSourceMetricsOperatorArgs.builder()
.equals(LogsDashboardFilterSourceMetricsOperatorEqualsArgs.builder()
.selection(LogsDashboardFilterSourceMetricsOperatorEqualsSelectionArgs.builder()
.all()
.list(LogsDashboardFilterSourceMetricsOperatorEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.notEquals(LogsDashboardFilterSourceMetricsOperatorNotEqualsArgs.builder()
.selection(LogsDashboardFilterSourceMetricsOperatorNotEqualsSelectionArgs.builder()
.list(LogsDashboardFilterSourceMetricsOperatorNotEqualsSelectionListArgs.builder()
.values("string")
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.fiveMinutes()
.folderId(LogsDashboardFolderIdArgs.builder()
.value("string")
.build())
.absoluteTimeFrame(LogsDashboardAbsoluteTimeFrameArgs.builder()
.from("string")
.to("string")
.build())
.endpointType("string")
.description("string")
.annotations(LogsDashboardAnnotationArgs.builder()
.enabled(false)
.id("string")
.name("string")
.source(LogsDashboardAnnotationSourceArgs.builder()
.logs(LogsDashboardAnnotationSourceLogsArgs.builder()
.luceneQuery(LogsDashboardAnnotationSourceLogsLuceneQueryArgs.builder()
.value("string")
.build())
.strategy(LogsDashboardAnnotationSourceLogsStrategyArgs.builder()
.duration(LogsDashboardAnnotationSourceLogsStrategyDurationArgs.builder()
.durationField(LogsDashboardAnnotationSourceLogsStrategyDurationDurationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.startTimestampField(LogsDashboardAnnotationSourceLogsStrategyDurationStartTimestampFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.instant(LogsDashboardAnnotationSourceLogsStrategyInstantArgs.builder()
.timestampField(LogsDashboardAnnotationSourceLogsStrategyInstantTimestampFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.range(LogsDashboardAnnotationSourceLogsStrategyRangeArgs.builder()
.endTimestampField(LogsDashboardAnnotationSourceLogsStrategyRangeEndTimestampFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.startTimestampField(LogsDashboardAnnotationSourceLogsStrategyRangeStartTimestampFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.build())
.labelFields(LogsDashboardAnnotationSourceLogsLabelFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.messageTemplate("string")
.build())
.metrics(LogsDashboardAnnotationSourceMetricsArgs.builder()
.labels("string")
.messageTemplate("string")
.promqlQuery(LogsDashboardAnnotationSourceMetricsPromqlQueryArgs.builder()
.value("string")
.build())
.strategy(LogsDashboardAnnotationSourceMetricsStrategyArgs.builder()
.startTimeMetric()
.build())
.build())
.build())
.href("string")
.build())
.logsDashboardId("string")
.name("string")
.region("string")
.relativeTimeFrame("string")
.twoMinutes()
.variables(LogsDashboardVariableArgs.builder()
.definition(LogsDashboardVariableDefinitionArgs.builder()
.multiSelect(LogsDashboardVariableDefinitionMultiSelectArgs.builder()
.selection(LogsDashboardVariableDefinitionMultiSelectSelectionArgs.builder()
.all()
.list(LogsDashboardVariableDefinitionMultiSelectSelectionListArgs.builder()
.values("string")
.build())
.build())
.source(LogsDashboardVariableDefinitionMultiSelectSourceArgs.builder()
.constantList(LogsDashboardVariableDefinitionMultiSelectSourceConstantListArgs.builder()
.values("string")
.build())
.logsPath(LogsDashboardVariableDefinitionMultiSelectSourceLogsPathArgs.builder()
.observationField(LogsDashboardVariableDefinitionMultiSelectSourceLogsPathObservationFieldArgs.builder()
.keypaths("string")
.scope("string")
.build())
.build())
.metricLabel(LogsDashboardVariableDefinitionMultiSelectSourceMetricLabelArgs.builder()
.label("string")
.metricName("string")
.build())
.build())
.valuesOrderDirection("string")
.build())
.build())
.displayName("string")
.name("string")
.build())
.build());
logs_dashboard_resource = ibm.LogsDashboard("logsDashboardResource",
instance_id="string",
layout={
"sections": [{
"id": {
"value": "string",
},
"href": "string",
"rows": [{
"appearance": {
"height": 0,
},
"id": {
"value": "string",
},
"href": "string",
"widgets": [{
"definition": {
"bar_chart": {
"color_scheme": "string",
"colors_by": {
"aggregation": {},
"group_by": {},
"stack": {},
},
"group_name_template": "string",
"max_bars_per_chart": 0,
"query": {
"dataprime": {
"dataprime_query": {
"text": "string",
},
"filters": [{
"logs": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
"metrics": {
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
}],
"group_names": ["string"],
"stacked_group_name": "string",
},
"logs": {
"aggregation": {
"average": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"count": {},
"count_distinct": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"max": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"min": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"percentile": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"percent": 0,
},
"sum": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
},
"filters": [{
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
"group_names_fields": [{
"keypaths": ["string"],
"scope": "string",
}],
"lucene_query": {
"value": "string",
},
"stacked_group_name_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"metrics": {
"filters": [{
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
"group_names": ["string"],
"promql_query": {
"value": "string",
},
"stacked_group_name": "string",
},
},
"scale_type": "string",
"sort_by": "string",
"stack_definition": {
"max_slices_per_bar": 0,
"stack_name_template": "string",
},
"unit": "string",
"x_axis": {
"time": {
"buckets_presented": 0,
"interval": "string",
},
"value": {},
},
"data_mode_type": "string",
},
"data_table": {
"query": {
"dataprime": {
"dataprime_query": {
"text": "string",
},
"filters": [{
"logs": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
"metrics": {
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
}],
},
"logs": {
"filters": [{
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
"grouping": {
"aggregations": [{
"aggregation": {
"average": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"count": {},
"count_distinct": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"max": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"min": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"percentile": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"percent": 0,
},
"sum": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
},
"id": "string",
"is_visible": False,
"name": "string",
}],
"group_bys": [{
"keypaths": ["string"],
"scope": "string",
}],
},
"lucene_query": {
"value": "string",
},
},
"metrics": {
"promql_query": {
"value": "string",
},
"filters": [{
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
},
},
"results_per_page": 0,
"row_style": "string",
"columns": [{
"field": "string",
"width": 0,
}],
"data_mode_type": "string",
"order_by": {
"field": "string",
"order_direction": "string",
},
},
"gauge": {
"max": 0,
"min": 0,
"query": {
"dataprime": {
"dataprime_query": {
"text": "string",
},
"filters": [{
"logs": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
"metrics": {
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
}],
},
"logs": {
"filters": [{
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
"logs_aggregation": {
"average": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"count": {},
"count_distinct": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"max": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"min": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"percentile": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"percent": 0,
},
"sum": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
},
"lucene_query": {
"value": "string",
},
},
"metrics": {
"aggregation": "string",
"promql_query": {
"value": "string",
},
"filters": [{
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
},
},
"show_inner_arc": False,
"show_outer_arc": False,
"threshold_by": "string",
"unit": "string",
"data_mode_type": "string",
"thresholds": [{
"color": "string",
"from_": 0,
}],
},
"horizontal_bar_chart": {
"color_scheme": "string",
"colors_by": {
"aggregation": {},
"group_by": {},
"stack": {},
},
"data_mode_type": "string",
"display_on_bar": False,
"group_name_template": "string",
"max_bars_per_chart": 0,
"query": {
"dataprime": {
"dataprime_query": {
"text": "string",
},
"filters": [{
"logs": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
"metrics": {
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
}],
"group_names": ["string"],
"stacked_group_name": "string",
},
"logs": {
"aggregation": {
"average": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"count": {},
"count_distinct": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"max": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"min": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"percentile": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"percent": 0,
},
"sum": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
},
"filters": [{
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
"group_names_fields": [{
"keypaths": ["string"],
"scope": "string",
}],
"lucene_query": {
"value": "string",
},
"stacked_group_name_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"metrics": {
"filters": [{
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
"group_names": ["string"],
"promql_query": {
"value": "string",
},
"stacked_group_name": "string",
},
},
"scale_type": "string",
"sort_by": "string",
"stack_definition": {
"max_slices_per_bar": 0,
"stack_name_template": "string",
},
"unit": "string",
"y_axis_view_by": {
"category": {},
"value": {},
},
},
"line_chart": {
"legend": {
"group_by_query": False,
"is_visible": False,
"columns": ["string"],
},
"tooltip": {
"show_labels": False,
"type": "string",
},
"query_definitions": [{
"id": "string",
"is_visible": False,
"query": {
"dataprime": {
"dataprime_query": {
"text": "string",
},
"filters": [{
"logs": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
"metrics": {
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
}],
},
"logs": {
"aggregations": [{
"average": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"count": {},
"count_distinct": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"max": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"min": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"percentile": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"percent": 0,
},
"sum": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
}],
"filters": [{
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
"group_bies": ["string"],
"group_bys": [{
"keypaths": ["string"],
"scope": "string",
}],
"lucene_query": {
"value": "string",
},
},
"metrics": {
"filters": [{
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
"promql_query": {
"value": "string",
},
},
},
"resolution": {
"buckets_presented": 0,
"interval": "string",
},
"color_scheme": "string",
"data_mode_type": "string",
"name": "string",
"scale_type": "string",
"series_count_limit": "string",
"series_name_template": "string",
"unit": "string",
}],
"stacked_line": "string",
},
"markdown": {
"markdown_text": "string",
"tooltip_text": "string",
},
"pie_chart": {
"color_scheme": "string",
"label_definition": {
"is_visible": False,
"label_source": "string",
"show_name": False,
"show_percentage": False,
"show_value": False,
},
"max_slices_per_chart": 0,
"min_slice_percentage": 0,
"query": {
"dataprime": {
"dataprime_query": {
"text": "string",
},
"filters": [{
"logs": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
"metrics": {
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
}],
"group_names": ["string"],
"stacked_group_name": "string",
},
"logs": {
"aggregation": {
"average": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"count": {},
"count_distinct": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"max": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"min": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"percentile": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"percent": 0,
},
"sum": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
},
"filters": [{
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
"group_names_fields": [{
"keypaths": ["string"],
"scope": "string",
}],
"lucene_query": {
"value": "string",
},
"stacked_group_name_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"metrics": {
"promql_query": {
"value": "string",
},
"filters": [{
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
}],
"group_names": ["string"],
"stacked_group_name": "string",
},
},
"show_legend": False,
"stack_definition": {
"max_slices_per_stack": 0,
"stack_name_template": "string",
},
"data_mode_type": "string",
"group_name_template": "string",
"unit": "string",
},
},
"id": {
"value": "string",
},
"title": "string",
"created_at": "string",
"description": "string",
"href": "string",
"updated_at": "string",
}],
}],
}],
},
folder_path={
"segments": ["string"],
},
href="string",
false={},
filters=[{
"collapsed": False,
"enabled": False,
"source": {
"logs": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
"metrics": {
"label": "string",
"operator": {
"equals": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
},
"not_equals": {
"selection": {
"list": {
"values": ["string"],
},
},
},
},
},
},
}],
five_minutes={},
folder_id={
"value": "string",
},
absolute_time_frame={
"from_": "string",
"to": "string",
},
endpoint_type="string",
description="string",
annotations=[{
"enabled": False,
"id": "string",
"name": "string",
"source": {
"logs": {
"lucene_query": {
"value": "string",
},
"strategy": {
"duration": {
"duration_field": {
"keypaths": ["string"],
"scope": "string",
},
"start_timestamp_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"instant": {
"timestamp_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"range": {
"end_timestamp_field": {
"keypaths": ["string"],
"scope": "string",
},
"start_timestamp_field": {
"keypaths": ["string"],
"scope": "string",
},
},
},
"label_fields": [{
"keypaths": ["string"],
"scope": "string",
}],
"message_template": "string",
},
"metrics": {
"labels": ["string"],
"message_template": "string",
"promql_query": {
"value": "string",
},
"strategy": {
"start_time_metric": {},
},
},
},
"href": "string",
}],
logs_dashboard_id="string",
name="string",
region="string",
relative_time_frame="string",
two_minutes={},
variables=[{
"definition": {
"multi_select": {
"selection": {
"all": {},
"list": {
"values": ["string"],
},
},
"source": {
"constant_list": {
"values": ["string"],
},
"logs_path": {
"observation_field": {
"keypaths": ["string"],
"scope": "string",
},
},
"metric_label": {
"label": "string",
"metric_name": "string",
},
},
"values_order_direction": "string",
},
},
"display_name": "string",
"name": "string",
}])
const logsDashboardResource = new ibm.LogsDashboard("logsDashboardResource", {
instanceId: "string",
layout: {
sections: [{
id: {
value: "string",
},
href: "string",
rows: [{
appearance: {
height: 0,
},
id: {
value: "string",
},
href: "string",
widgets: [{
definition: {
barChart: {
colorScheme: "string",
colorsBy: {
aggregation: {},
groupBy: {},
stack: {},
},
groupNameTemplate: "string",
maxBarsPerChart: 0,
query: {
dataprime: {
dataprimeQuery: {
text: "string",
},
filters: [{
logs: {
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
metrics: {
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
}],
groupNames: ["string"],
stackedGroupName: "string",
},
logs: {
aggregation: {
average: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
count: {},
countDistinct: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
max: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
min: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
percentile: {
observationField: {
keypaths: ["string"],
scope: "string",
},
percent: 0,
},
sum: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
},
filters: [{
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
groupNamesFields: [{
keypaths: ["string"],
scope: "string",
}],
luceneQuery: {
value: "string",
},
stackedGroupNameField: {
keypaths: ["string"],
scope: "string",
},
},
metrics: {
filters: [{
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
groupNames: ["string"],
promqlQuery: {
value: "string",
},
stackedGroupName: "string",
},
},
scaleType: "string",
sortBy: "string",
stackDefinition: {
maxSlicesPerBar: 0,
stackNameTemplate: "string",
},
unit: "string",
xAxis: {
time: {
bucketsPresented: 0,
interval: "string",
},
value: {},
},
dataModeType: "string",
},
dataTable: {
query: {
dataprime: {
dataprimeQuery: {
text: "string",
},
filters: [{
logs: {
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
metrics: {
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
}],
},
logs: {
filters: [{
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
grouping: {
aggregations: [{
aggregation: {
average: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
count: {},
countDistinct: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
max: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
min: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
percentile: {
observationField: {
keypaths: ["string"],
scope: "string",
},
percent: 0,
},
sum: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
},
id: "string",
isVisible: false,
name: "string",
}],
groupBys: [{
keypaths: ["string"],
scope: "string",
}],
},
luceneQuery: {
value: "string",
},
},
metrics: {
promqlQuery: {
value: "string",
},
filters: [{
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
},
},
resultsPerPage: 0,
rowStyle: "string",
columns: [{
field: "string",
width: 0,
}],
dataModeType: "string",
orderBy: {
field: "string",
orderDirection: "string",
},
},
gauge: {
max: 0,
min: 0,
query: {
dataprime: {
dataprimeQuery: {
text: "string",
},
filters: [{
logs: {
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
metrics: {
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
}],
},
logs: {
filters: [{
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
logsAggregation: {
average: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
count: {},
countDistinct: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
max: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
min: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
percentile: {
observationField: {
keypaths: ["string"],
scope: "string",
},
percent: 0,
},
sum: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
},
luceneQuery: {
value: "string",
},
},
metrics: {
aggregation: "string",
promqlQuery: {
value: "string",
},
filters: [{
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
},
},
showInnerArc: false,
showOuterArc: false,
thresholdBy: "string",
unit: "string",
dataModeType: "string",
thresholds: [{
color: "string",
from: 0,
}],
},
horizontalBarChart: {
colorScheme: "string",
colorsBy: {
aggregation: {},
groupBy: {},
stack: {},
},
dataModeType: "string",
displayOnBar: false,
groupNameTemplate: "string",
maxBarsPerChart: 0,
query: {
dataprime: {
dataprimeQuery: {
text: "string",
},
filters: [{
logs: {
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
metrics: {
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
}],
groupNames: ["string"],
stackedGroupName: "string",
},
logs: {
aggregation: {
average: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
count: {},
countDistinct: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
max: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
min: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
percentile: {
observationField: {
keypaths: ["string"],
scope: "string",
},
percent: 0,
},
sum: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
},
filters: [{
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
groupNamesFields: [{
keypaths: ["string"],
scope: "string",
}],
luceneQuery: {
value: "string",
},
stackedGroupNameField: {
keypaths: ["string"],
scope: "string",
},
},
metrics: {
filters: [{
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
groupNames: ["string"],
promqlQuery: {
value: "string",
},
stackedGroupName: "string",
},
},
scaleType: "string",
sortBy: "string",
stackDefinition: {
maxSlicesPerBar: 0,
stackNameTemplate: "string",
},
unit: "string",
yAxisViewBy: {
category: {},
value: {},
},
},
lineChart: {
legend: {
groupByQuery: false,
isVisible: false,
columns: ["string"],
},
tooltip: {
showLabels: false,
type: "string",
},
queryDefinitions: [{
id: "string",
isVisible: false,
query: {
dataprime: {
dataprimeQuery: {
text: "string",
},
filters: [{
logs: {
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
metrics: {
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
}],
},
logs: {
aggregations: [{
average: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
count: {},
countDistinct: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
max: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
min: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
percentile: {
observationField: {
keypaths: ["string"],
scope: "string",
},
percent: 0,
},
sum: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
}],
filters: [{
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
groupBies: ["string"],
groupBys: [{
keypaths: ["string"],
scope: "string",
}],
luceneQuery: {
value: "string",
},
},
metrics: {
filters: [{
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
promqlQuery: {
value: "string",
},
},
},
resolution: {
bucketsPresented: 0,
interval: "string",
},
colorScheme: "string",
dataModeType: "string",
name: "string",
scaleType: "string",
seriesCountLimit: "string",
seriesNameTemplate: "string",
unit: "string",
}],
stackedLine: "string",
},
markdown: {
markdownText: "string",
tooltipText: "string",
},
pieChart: {
colorScheme: "string",
labelDefinition: {
isVisible: false,
labelSource: "string",
showName: false,
showPercentage: false,
showValue: false,
},
maxSlicesPerChart: 0,
minSlicePercentage: 0,
query: {
dataprime: {
dataprimeQuery: {
text: "string",
},
filters: [{
logs: {
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
metrics: {
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
}],
groupNames: ["string"],
stackedGroupName: "string",
},
logs: {
aggregation: {
average: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
count: {},
countDistinct: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
max: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
min: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
percentile: {
observationField: {
keypaths: ["string"],
scope: "string",
},
percent: 0,
},
sum: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
},
filters: [{
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
groupNamesFields: [{
keypaths: ["string"],
scope: "string",
}],
luceneQuery: {
value: "string",
},
stackedGroupNameField: {
keypaths: ["string"],
scope: "string",
},
},
metrics: {
promqlQuery: {
value: "string",
},
filters: [{
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
}],
groupNames: ["string"],
stackedGroupName: "string",
},
},
showLegend: false,
stackDefinition: {
maxSlicesPerStack: 0,
stackNameTemplate: "string",
},
dataModeType: "string",
groupNameTemplate: "string",
unit: "string",
},
},
id: {
value: "string",
},
title: "string",
createdAt: "string",
description: "string",
href: "string",
updatedAt: "string",
}],
}],
}],
},
folderPath: {
segments: ["string"],
},
href: "string",
"false": {},
filters: [{
collapsed: false,
enabled: false,
source: {
logs: {
observationField: {
keypaths: ["string"],
scope: "string",
},
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
metrics: {
label: "string",
operator: {
equals: {
selection: {
all: {},
list: {
values: ["string"],
},
},
},
notEquals: {
selection: {
list: {
values: ["string"],
},
},
},
},
},
},
}],
fiveMinutes: {},
folderId: {
value: "string",
},
absoluteTimeFrame: {
from: "string",
to: "string",
},
endpointType: "string",
description: "string",
annotations: [{
enabled: false,
id: "string",
name: "string",
source: {
logs: {
luceneQuery: {
value: "string",
},
strategy: {
duration: {
durationField: {
keypaths: ["string"],
scope: "string",
},
startTimestampField: {
keypaths: ["string"],
scope: "string",
},
},
instant: {
timestampField: {
keypaths: ["string"],
scope: "string",
},
},
range: {
endTimestampField: {
keypaths: ["string"],
scope: "string",
},
startTimestampField: {
keypaths: ["string"],
scope: "string",
},
},
},
labelFields: [{
keypaths: ["string"],
scope: "string",
}],
messageTemplate: "string",
},
metrics: {
labels: ["string"],
messageTemplate: "string",
promqlQuery: {
value: "string",
},
strategy: {
startTimeMetric: {},
},
},
},
href: "string",
}],
logsDashboardId: "string",
name: "string",
region: "string",
relativeTimeFrame: "string",
twoMinutes: {},
variables: [{
definition: {
multiSelect: {
selection: {
all: {},
list: {
values: ["string"],
},
},
source: {
constantList: {
values: ["string"],
},
logsPath: {
observationField: {
keypaths: ["string"],
scope: "string",
},
},
metricLabel: {
label: "string",
metricName: "string",
},
},
valuesOrderDirection: "string",
},
},
displayName: "string",
name: "string",
}],
});
type: ibm:LogsDashboard
properties:
absoluteTimeFrame:
from: string
to: string
annotations:
- enabled: false
href: string
id: string
name: string
source:
logs:
labelFields:
- keypaths:
- string
scope: string
luceneQuery:
value: string
messageTemplate: string
strategy:
duration:
durationField:
keypaths:
- string
scope: string
startTimestampField:
keypaths:
- string
scope: string
instant:
timestampField:
keypaths:
- string
scope: string
range:
endTimestampField:
keypaths:
- string
scope: string
startTimestampField:
keypaths:
- string
scope: string
metrics:
labels:
- string
messageTemplate: string
promqlQuery:
value: string
strategy:
startTimeMetric: {}
description: string
endpointType: string
"false": {}
filters:
- collapsed: false
enabled: false
source:
logs:
observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
metrics:
label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
fiveMinutes: {}
folderId:
value: string
folderPath:
segments:
- string
href: string
instanceId: string
layout:
sections:
- href: string
id:
value: string
rows:
- appearance:
height: 0
href: string
id:
value: string
widgets:
- createdAt: string
definition:
barChart:
colorScheme: string
colorsBy:
aggregation: {}
groupBy: {}
stack: {}
dataModeType: string
groupNameTemplate: string
maxBarsPerChart: 0
query:
dataprime:
dataprimeQuery:
text: string
filters:
- logs:
observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
metrics:
label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
groupNames:
- string
stackedGroupName: string
logs:
aggregation:
average:
observationField:
keypaths:
- string
scope: string
count: {}
countDistinct:
observationField:
keypaths:
- string
scope: string
max:
observationField:
keypaths:
- string
scope: string
min:
observationField:
keypaths:
- string
scope: string
percentile:
observationField:
keypaths:
- string
scope: string
percent: 0
sum:
observationField:
keypaths:
- string
scope: string
filters:
- observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
groupNamesFields:
- keypaths:
- string
scope: string
luceneQuery:
value: string
stackedGroupNameField:
keypaths:
- string
scope: string
metrics:
filters:
- label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
groupNames:
- string
promqlQuery:
value: string
stackedGroupName: string
scaleType: string
sortBy: string
stackDefinition:
maxSlicesPerBar: 0
stackNameTemplate: string
unit: string
xAxis:
time:
bucketsPresented: 0
interval: string
value: {}
dataTable:
columns:
- field: string
width: 0
dataModeType: string
orderBy:
field: string
orderDirection: string
query:
dataprime:
dataprimeQuery:
text: string
filters:
- logs:
observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
metrics:
label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
logs:
filters:
- observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
grouping:
aggregations:
- aggregation:
average:
observationField:
keypaths:
- string
scope: string
count: {}
countDistinct:
observationField:
keypaths:
- string
scope: string
max:
observationField:
keypaths:
- string
scope: string
min:
observationField:
keypaths:
- string
scope: string
percentile:
observationField:
keypaths:
- string
scope: string
percent: 0
sum:
observationField:
keypaths:
- string
scope: string
id: string
isVisible: false
name: string
groupBys:
- keypaths:
- string
scope: string
luceneQuery:
value: string
metrics:
filters:
- label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
promqlQuery:
value: string
resultsPerPage: 0
rowStyle: string
gauge:
dataModeType: string
max: 0
min: 0
query:
dataprime:
dataprimeQuery:
text: string
filters:
- logs:
observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
metrics:
label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
logs:
filters:
- observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
logsAggregation:
average:
observationField:
keypaths:
- string
scope: string
count: {}
countDistinct:
observationField:
keypaths:
- string
scope: string
max:
observationField:
keypaths:
- string
scope: string
min:
observationField:
keypaths:
- string
scope: string
percentile:
observationField:
keypaths:
- string
scope: string
percent: 0
sum:
observationField:
keypaths:
- string
scope: string
luceneQuery:
value: string
metrics:
aggregation: string
filters:
- label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
promqlQuery:
value: string
showInnerArc: false
showOuterArc: false
thresholdBy: string
thresholds:
- color: string
from: 0
unit: string
horizontalBarChart:
colorScheme: string
colorsBy:
aggregation: {}
groupBy: {}
stack: {}
dataModeType: string
displayOnBar: false
groupNameTemplate: string
maxBarsPerChart: 0
query:
dataprime:
dataprimeQuery:
text: string
filters:
- logs:
observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
metrics:
label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
groupNames:
- string
stackedGroupName: string
logs:
aggregation:
average:
observationField:
keypaths:
- string
scope: string
count: {}
countDistinct:
observationField:
keypaths:
- string
scope: string
max:
observationField:
keypaths:
- string
scope: string
min:
observationField:
keypaths:
- string
scope: string
percentile:
observationField:
keypaths:
- string
scope: string
percent: 0
sum:
observationField:
keypaths:
- string
scope: string
filters:
- observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
groupNamesFields:
- keypaths:
- string
scope: string
luceneQuery:
value: string
stackedGroupNameField:
keypaths:
- string
scope: string
metrics:
filters:
- label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
groupNames:
- string
promqlQuery:
value: string
stackedGroupName: string
scaleType: string
sortBy: string
stackDefinition:
maxSlicesPerBar: 0
stackNameTemplate: string
unit: string
yAxisViewBy:
category: {}
value: {}
lineChart:
legend:
columns:
- string
groupByQuery: false
isVisible: false
queryDefinitions:
- colorScheme: string
dataModeType: string
id: string
isVisible: false
name: string
query:
dataprime:
dataprimeQuery:
text: string
filters:
- logs:
observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
metrics:
label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
logs:
aggregations:
- average:
observationField:
keypaths:
- string
scope: string
count: {}
countDistinct:
observationField:
keypaths:
- string
scope: string
max:
observationField:
keypaths:
- string
scope: string
min:
observationField:
keypaths:
- string
scope: string
percentile:
observationField:
keypaths:
- string
scope: string
percent: 0
sum:
observationField:
keypaths:
- string
scope: string
filters:
- observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
groupBies:
- string
groupBys:
- keypaths:
- string
scope: string
luceneQuery:
value: string
metrics:
filters:
- label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
promqlQuery:
value: string
resolution:
bucketsPresented: 0
interval: string
scaleType: string
seriesCountLimit: string
seriesNameTemplate: string
unit: string
stackedLine: string
tooltip:
showLabels: false
type: string
markdown:
markdownText: string
tooltipText: string
pieChart:
colorScheme: string
dataModeType: string
groupNameTemplate: string
labelDefinition:
isVisible: false
labelSource: string
showName: false
showPercentage: false
showValue: false
maxSlicesPerChart: 0
minSlicePercentage: 0
query:
dataprime:
dataprimeQuery:
text: string
filters:
- logs:
observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
metrics:
label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
groupNames:
- string
stackedGroupName: string
logs:
aggregation:
average:
observationField:
keypaths:
- string
scope: string
count: {}
countDistinct:
observationField:
keypaths:
- string
scope: string
max:
observationField:
keypaths:
- string
scope: string
min:
observationField:
keypaths:
- string
scope: string
percentile:
observationField:
keypaths:
- string
scope: string
percent: 0
sum:
observationField:
keypaths:
- string
scope: string
filters:
- observationField:
keypaths:
- string
scope: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
groupNamesFields:
- keypaths:
- string
scope: string
luceneQuery:
value: string
stackedGroupNameField:
keypaths:
- string
scope: string
metrics:
filters:
- label: string
operator:
equals:
selection:
all: {}
list:
values:
- string
notEquals:
selection:
list:
values:
- string
groupNames:
- string
promqlQuery:
value: string
stackedGroupName: string
showLegend: false
stackDefinition:
maxSlicesPerStack: 0
stackNameTemplate: string
unit: string
description: string
href: string
id:
value: string
title: string
updatedAt: string
logsDashboardId: string
name: string
region: string
relativeTimeFrame: string
twoMinutes: {}
variables:
- definition:
multiSelect:
selection:
all: {}
list:
values:
- string
source:
constantList:
values:
- string
logsPath:
observationField:
keypaths:
- string
scope: string
metricLabel:
label: string
metricName: string
valuesOrderDirection: string
displayName: string
name: string
LogsDashboard 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 LogsDashboard resource accepts the following input properties:
- Instance
Id string - Cloud Logs Instance GUID.
- Layout
Logs
Dashboard Layout - Layout configuration for the dashboard's visual elements. Nested schema for layout:
- Absolute
Time LogsFrame Dashboard Absolute Time Frame - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- Annotations
List<Logs
Dashboard Annotation> - List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- Description string
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - False
Logs
Dashboard False - Auto refresh interval is set to off. Nested schema for false:
- Filters
List<Logs
Dashboard Filter> - List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Five
Minutes LogsDashboard Five Minutes - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- Folder
Id LogsDashboard Folder Id - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- Folder
Path LogsDashboard Folder Path - Path of the folder containing the dashboard. Nested schema for folder_path:
- Href string
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- Logs
Dashboard stringId - The unique identifier of the logs_dashboard resource.
- Name string
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Region string
- Cloud Logs Instance Region.
- Relative
Time stringFrame - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- Two
Minutes LogsDashboard Two Minutes - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- Variables
List<Logs
Dashboard Variable> - List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
- Instance
Id string - Cloud Logs Instance GUID.
- Layout
Logs
Dashboard Layout Args - Layout configuration for the dashboard's visual elements. Nested schema for layout:
- Absolute
Time LogsFrame Dashboard Absolute Time Frame Args - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- Annotations
[]Logs
Dashboard Annotation Args - List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- Description string
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - False
Logs
Dashboard False Args - Auto refresh interval is set to off. Nested schema for false:
- Filters
[]Logs
Dashboard Filter Args - List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Five
Minutes LogsDashboard Five Minutes Args - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- Folder
Id LogsDashboard Folder Id Args - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- Folder
Path LogsDashboard Folder Path Args - Path of the folder containing the dashboard. Nested schema for folder_path:
- Href string
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- Logs
Dashboard stringId - The unique identifier of the logs_dashboard resource.
- Name string
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Region string
- Cloud Logs Instance Region.
- Relative
Time stringFrame - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- Two
Minutes LogsDashboard Two Minutes Args - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- Variables
[]Logs
Dashboard Variable Args - List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
- instance
Id String - Cloud Logs Instance GUID.
- layout
Logs
Dashboard Layout - Layout configuration for the dashboard's visual elements. Nested schema for layout:
- absolute
Time LogsFrame Dashboard Absolute Time Frame - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- annotations
List<Logs
Dashboard Annotation> - List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- description String
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - false_
Logs
Dashboard False - Auto refresh interval is set to off. Nested schema for false:
- filters
List<Logs
Dashboard Filter> - List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- five
Minutes LogsDashboard Five Minutes - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- folder
Id LogsDashboard Folder Id - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- folder
Path LogsDashboard Folder Path - Path of the folder containing the dashboard. Nested schema for folder_path:
- href String
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- logs
Dashboard StringId - The unique identifier of the logs_dashboard resource.
- name String
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region String
- Cloud Logs Instance Region.
- relative
Time StringFrame - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- two
Minutes LogsDashboard Two Minutes - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- variables
List<Logs
Dashboard Variable> - List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
- instance
Id string - Cloud Logs Instance GUID.
- layout
Logs
Dashboard Layout - Layout configuration for the dashboard's visual elements. Nested schema for layout:
- absolute
Time LogsFrame Dashboard Absolute Time Frame - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- annotations
Logs
Dashboard Annotation[] - List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- description string
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - false
Logs
Dashboard False - Auto refresh interval is set to off. Nested schema for false:
- filters
Logs
Dashboard Filter[] - List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- five
Minutes LogsDashboard Five Minutes - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- folder
Id LogsDashboard Folder Id - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- folder
Path LogsDashboard Folder Path - Path of the folder containing the dashboard. Nested schema for folder_path:
- href string
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- logs
Dashboard stringId - The unique identifier of the logs_dashboard resource.
- name string
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region string
- Cloud Logs Instance Region.
- relative
Time stringFrame - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- two
Minutes LogsDashboard Two Minutes - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- variables
Logs
Dashboard Variable[] - List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
- instance_
id str - Cloud Logs Instance GUID.
- layout
Logs
Dashboard Layout Args - Layout configuration for the dashboard's visual elements. Nested schema for layout:
- absolute_
time_ Logsframe Dashboard Absolute Time Frame Args - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- annotations
Sequence[Logs
Dashboard Annotation Args] - List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- description str
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- endpoint_
type str - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - false
Logs
Dashboard False Args - Auto refresh interval is set to off. Nested schema for false:
- filters
Sequence[Logs
Dashboard Filter Args] - List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- five_
minutes LogsDashboard Five Minutes Args - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- folder_
id LogsDashboard Folder Id Args - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- folder_
path LogsDashboard Folder Path Args - Path of the folder containing the dashboard. Nested schema for folder_path:
- href str
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- logs_
dashboard_ strid - The unique identifier of the logs_dashboard resource.
- name str
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region str
- Cloud Logs Instance Region.
- relative_
time_ strframe - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- two_
minutes LogsDashboard Two Minutes Args - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- variables
Sequence[Logs
Dashboard Variable Args] - List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
- instance
Id String - Cloud Logs Instance GUID.
- layout Property Map
- Layout configuration for the dashboard's visual elements. Nested schema for layout:
- absolute
Time Property MapFrame - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- annotations List<Property Map>
- List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- description String
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - false Property Map
- Auto refresh interval is set to off. Nested schema for false:
- filters List<Property Map>
- List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- five
Minutes Property Map - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- folder
Id Property Map - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- folder
Path Property Map - Path of the folder containing the dashboard. Nested schema for folder_path:
- href String
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- logs
Dashboard StringId - The unique identifier of the logs_dashboard resource.
- name String
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region String
- Cloud Logs Instance Region.
- relative
Time StringFrame - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- two
Minutes Property Map - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- variables List<Property Map>
- List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
Outputs
All input properties are implicitly available as output properties. Additionally, the LogsDashboard resource produces the following output properties:
- Dashboard
Id string - The unique identifier of the logs dashboard.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dashboard
Id string - The unique identifier of the logs dashboard.
- Id string
- The provider-assigned unique ID for this managed resource.
- dashboard
Id String - The unique identifier of the logs dashboard.
- id String
- The provider-assigned unique ID for this managed resource.
- dashboard
Id string - The unique identifier of the logs dashboard.
- id string
- The provider-assigned unique ID for this managed resource.
- dashboard_
id str - The unique identifier of the logs dashboard.
- id str
- The provider-assigned unique ID for this managed resource.
- dashboard
Id String - The unique identifier of the logs dashboard.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing LogsDashboard Resource
Get an existing LogsDashboard 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?: LogsDashboardState, opts?: CustomResourceOptions): LogsDashboard
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
absolute_time_frame: Optional[LogsDashboardAbsoluteTimeFrameArgs] = None,
annotations: Optional[Sequence[LogsDashboardAnnotationArgs]] = None,
dashboard_id: Optional[str] = None,
description: Optional[str] = None,
endpoint_type: Optional[str] = None,
false: Optional[LogsDashboardFalseArgs] = None,
filters: Optional[Sequence[LogsDashboardFilterArgs]] = None,
five_minutes: Optional[LogsDashboardFiveMinutesArgs] = None,
folder_id: Optional[LogsDashboardFolderIdArgs] = None,
folder_path: Optional[LogsDashboardFolderPathArgs] = None,
href: Optional[str] = None,
instance_id: Optional[str] = None,
layout: Optional[LogsDashboardLayoutArgs] = None,
logs_dashboard_id: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
relative_time_frame: Optional[str] = None,
two_minutes: Optional[LogsDashboardTwoMinutesArgs] = None,
variables: Optional[Sequence[LogsDashboardVariableArgs]] = None) -> LogsDashboard
func GetLogsDashboard(ctx *Context, name string, id IDInput, state *LogsDashboardState, opts ...ResourceOption) (*LogsDashboard, error)
public static LogsDashboard Get(string name, Input<string> id, LogsDashboardState? state, CustomResourceOptions? opts = null)
public static LogsDashboard get(String name, Output<String> id, LogsDashboardState state, CustomResourceOptions options)
resources: _: type: ibm:LogsDashboard get: 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.
- Absolute
Time LogsFrame Dashboard Absolute Time Frame - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- Annotations
List<Logs
Dashboard Annotation> - List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- Dashboard
Id string - The unique identifier of the logs dashboard.
- Description string
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - False
Logs
Dashboard False - Auto refresh interval is set to off. Nested schema for false:
- Filters
List<Logs
Dashboard Filter> - List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Five
Minutes LogsDashboard Five Minutes - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- Folder
Id LogsDashboard Folder Id - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- Folder
Path LogsDashboard Folder Path - Path of the folder containing the dashboard. Nested schema for folder_path:
- Href string
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- Instance
Id string - Cloud Logs Instance GUID.
- Layout
Logs
Dashboard Layout - Layout configuration for the dashboard's visual elements. Nested schema for layout:
- Logs
Dashboard stringId - The unique identifier of the logs_dashboard resource.
- Name string
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Region string
- Cloud Logs Instance Region.
- Relative
Time stringFrame - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- Two
Minutes LogsDashboard Two Minutes - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- Variables
List<Logs
Dashboard Variable> - List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
- Absolute
Time LogsFrame Dashboard Absolute Time Frame Args - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- Annotations
[]Logs
Dashboard Annotation Args - List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- Dashboard
Id string - The unique identifier of the logs dashboard.
- Description string
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - False
Logs
Dashboard False Args - Auto refresh interval is set to off. Nested schema for false:
- Filters
[]Logs
Dashboard Filter Args - List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Five
Minutes LogsDashboard Five Minutes Args - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- Folder
Id LogsDashboard Folder Id Args - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- Folder
Path LogsDashboard Folder Path Args - Path of the folder containing the dashboard. Nested schema for folder_path:
- Href string
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- Instance
Id string - Cloud Logs Instance GUID.
- Layout
Logs
Dashboard Layout Args - Layout configuration for the dashboard's visual elements. Nested schema for layout:
- Logs
Dashboard stringId - The unique identifier of the logs_dashboard resource.
- Name string
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Region string
- Cloud Logs Instance Region.
- Relative
Time stringFrame - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- Two
Minutes LogsDashboard Two Minutes Args - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- Variables
[]Logs
Dashboard Variable Args - List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
- absolute
Time LogsFrame Dashboard Absolute Time Frame - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- annotations
List<Logs
Dashboard Annotation> - List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- dashboard
Id String - The unique identifier of the logs dashboard.
- description String
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - false_
Logs
Dashboard False - Auto refresh interval is set to off. Nested schema for false:
- filters
List<Logs
Dashboard Filter> - List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- five
Minutes LogsDashboard Five Minutes - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- folder
Id LogsDashboard Folder Id - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- folder
Path LogsDashboard Folder Path - Path of the folder containing the dashboard. Nested schema for folder_path:
- href String
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- instance
Id String - Cloud Logs Instance GUID.
- layout
Logs
Dashboard Layout - Layout configuration for the dashboard's visual elements. Nested schema for layout:
- logs
Dashboard StringId - The unique identifier of the logs_dashboard resource.
- name String
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region String
- Cloud Logs Instance Region.
- relative
Time StringFrame - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- two
Minutes LogsDashboard Two Minutes - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- variables
List<Logs
Dashboard Variable> - List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
- absolute
Time LogsFrame Dashboard Absolute Time Frame - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- annotations
Logs
Dashboard Annotation[] - List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- dashboard
Id string - The unique identifier of the logs dashboard.
- description string
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - false
Logs
Dashboard False - Auto refresh interval is set to off. Nested schema for false:
- filters
Logs
Dashboard Filter[] - List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- five
Minutes LogsDashboard Five Minutes - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- folder
Id LogsDashboard Folder Id - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- folder
Path LogsDashboard Folder Path - Path of the folder containing the dashboard. Nested schema for folder_path:
- href string
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- instance
Id string - Cloud Logs Instance GUID.
- layout
Logs
Dashboard Layout - Layout configuration for the dashboard's visual elements. Nested schema for layout:
- logs
Dashboard stringId - The unique identifier of the logs_dashboard resource.
- name string
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region string
- Cloud Logs Instance Region.
- relative
Time stringFrame - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- two
Minutes LogsDashboard Two Minutes - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- variables
Logs
Dashboard Variable[] - List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
- absolute_
time_ Logsframe Dashboard Absolute Time Frame Args - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- annotations
Sequence[Logs
Dashboard Annotation Args] - List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- dashboard_
id str - The unique identifier of the logs dashboard.
- description str
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- endpoint_
type str - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - false
Logs
Dashboard False Args - Auto refresh interval is set to off. Nested schema for false:
- filters
Sequence[Logs
Dashboard Filter Args] - List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- five_
minutes LogsDashboard Five Minutes Args - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- folder_
id LogsDashboard Folder Id Args - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- folder_
path LogsDashboard Folder Path Args - Path of the folder containing the dashboard. Nested schema for folder_path:
- href str
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- instance_
id str - Cloud Logs Instance GUID.
- layout
Logs
Dashboard Layout Args - Layout configuration for the dashboard's visual elements. Nested schema for layout:
- logs_
dashboard_ strid - The unique identifier of the logs_dashboard resource.
- name str
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region str
- Cloud Logs Instance Region.
- relative_
time_ strframe - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- two_
minutes LogsDashboard Two Minutes Args - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- variables
Sequence[Logs
Dashboard Variable Args] - List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
- absolute
Time Property MapFrame - Absolute time frame specifying a fixed start and end time. Nested schema for absolute_time_frame:
- annotations List<Property Map>
- List of annotations that can be applied to the dashboard's visual elements.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for annotations:
- Constraints: The maximum length is
- dashboard
Id String - The unique identifier of the logs dashboard.
- description String
- Brief description or summary of the dashboard's purpose or content.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - false Property Map
- Auto refresh interval is set to off. Nested schema for false:
- filters List<Property Map>
- List of filters that can be applied to the dashboard's data.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- five
Minutes Property Map - Auto refresh interval is set to five minutes. Nested schema for five_minutes:
- folder
Id Property Map - Unique identifier of the folder containing the dashboard. Nested schema for folder_id:
- folder
Path Property Map - Path of the folder containing the dashboard. Nested schema for folder_path:
- href String
- Unique identifier for the dashboard.
- Constraints: The maximum length is
21
characters. The minimum length is21
characters. The value must match regular expression/^[a-zA-Z0-9]{21}$/
.
- Constraints: The maximum length is
- instance
Id String - Cloud Logs Instance GUID.
- layout Property Map
- Layout configuration for the dashboard's visual elements. Nested schema for layout:
- logs
Dashboard StringId - The unique identifier of the logs_dashboard resource.
- name String
- Display name of the dashboard.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region String
- Cloud Logs Instance Region.
- relative
Time StringFrame - Relative time frame specifying a duration from the current time.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- two
Minutes Property Map - Auto refresh interval is set to two minutes. Nested schema for two_minutes:
- variables List<Property Map>
- List of variables that can be used within the dashboard for dynamic content.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for variables:
- Constraints: The maximum length is
Supporting Types
LogsDashboardAbsoluteTimeFrame, LogsDashboardAbsoluteTimeFrameArgs
LogsDashboardAnnotation, LogsDashboardAnnotationArgs
- Enabled bool
- Whether the annotation is enabled.
- Id string
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- Name string
- Name of the annotation.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Source
Logs
Dashboard Annotation Source - Source of the annotation events. Nested schema for source:
- Href string
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- Enabled bool
- Whether the annotation is enabled.
- Id string
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- Name string
- Name of the annotation.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Source
Logs
Dashboard Annotation Source - Source of the annotation events. Nested schema for source:
- Href string
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- enabled Boolean
- Whether the annotation is enabled.
- id String
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- name String
- Name of the annotation.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- source
Logs
Dashboard Annotation Source - Source of the annotation events. Nested schema for source:
- href String
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- enabled boolean
- Whether the annotation is enabled.
- id string
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- name string
- Name of the annotation.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- source
Logs
Dashboard Annotation Source - Source of the annotation events. Nested schema for source:
- href string
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- enabled bool
- Whether the annotation is enabled.
- id str
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- name str
- Name of the annotation.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- source
Logs
Dashboard Annotation Source - Source of the annotation events. Nested schema for source:
- href str
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- enabled Boolean
- Whether the annotation is enabled.
- id String
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- name String
- Name of the annotation.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- source Property Map
- Source of the annotation events. Nested schema for source:
- href String
- Unique identifier within the dashboard.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
LogsDashboardAnnotationSource, LogsDashboardAnnotationSourceArgs
- Logs
Logs
Dashboard Annotation Source Logs - Logs source. Nested schema for logs:
- Metrics
Logs
Dashboard Annotation Source Metrics - Metrics source. Nested schema for metrics:
- Logs
Logs
Dashboard Annotation Source Logs - Logs source. Nested schema for logs:
- Metrics
Logs
Dashboard Annotation Source Metrics - Metrics source. Nested schema for metrics:
- logs
Logs
Dashboard Annotation Source Logs - Logs source. Nested schema for logs:
- metrics
Logs
Dashboard Annotation Source Metrics - Metrics source. Nested schema for metrics:
- logs
Logs
Dashboard Annotation Source Logs - Logs source. Nested schema for logs:
- metrics
Logs
Dashboard Annotation Source Metrics - Metrics source. Nested schema for metrics:
- logs
Logs
Dashboard Annotation Source Logs - Logs source. Nested schema for logs:
- metrics
Logs
Dashboard Annotation Source Metrics - Metrics source. Nested schema for metrics:
- logs Property Map
- Logs source. Nested schema for logs:
- metrics Property Map
- Metrics source. Nested schema for metrics:
LogsDashboardAnnotationSourceLogs, LogsDashboardAnnotationSourceLogsArgs
- Lucene
Query LogsDashboard Annotation Source Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Strategy
Logs
Dashboard Annotation Source Logs Strategy - Strategy for turning logs data into annotations. Nested schema for strategy:
- Label
Fields List<LogsDashboard Annotation Source Logs Label Field> - Labels to display in the annotation.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for label_fields:
- Constraints: The maximum length is
- Message
Template string - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Lucene
Query LogsDashboard Annotation Source Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Strategy
Logs
Dashboard Annotation Source Logs Strategy - Strategy for turning logs data into annotations. Nested schema for strategy:
- Label
Fields []LogsDashboard Annotation Source Logs Label Field - Labels to display in the annotation.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for label_fields:
- Constraints: The maximum length is
- Message
Template string - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- lucene
Query LogsDashboard Annotation Source Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- strategy
Logs
Dashboard Annotation Source Logs Strategy - Strategy for turning logs data into annotations. Nested schema for strategy:
- label
Fields List<LogsDashboard Annotation Source Logs Label Field> - Labels to display in the annotation.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for label_fields:
- Constraints: The maximum length is
- message
Template String - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- lucene
Query LogsDashboard Annotation Source Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- strategy
Logs
Dashboard Annotation Source Logs Strategy - Strategy for turning logs data into annotations. Nested schema for strategy:
- label
Fields LogsDashboard Annotation Source Logs Label Field[] - Labels to display in the annotation.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for label_fields:
- Constraints: The maximum length is
- message
Template string - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- lucene_
query LogsDashboard Annotation Source Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- strategy
Logs
Dashboard Annotation Source Logs Strategy - Strategy for turning logs data into annotations. Nested schema for strategy:
- label_
fields Sequence[LogsDashboard Annotation Source Logs Label Field] - Labels to display in the annotation.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for label_fields:
- Constraints: The maximum length is
- message_
template str - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- lucene
Query Property Map - Lucene query. Nested schema for lucene_query:
- strategy Property Map
- Strategy for turning logs data into annotations. Nested schema for strategy:
- label
Fields List<Property Map> - Labels to display in the annotation.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for label_fields:
- Constraints: The maximum length is
- message
Template String - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardAnnotationSourceLogsLabelField, LogsDashboardAnnotationSourceLogsLabelFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardAnnotationSourceLogsLuceneQuery, LogsDashboardAnnotationSourceLogsLuceneQueryArgs
- Value string
- The Lucene query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The Lucene query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The Lucene query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The Lucene query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The Lucene query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The Lucene query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardAnnotationSourceLogsStrategy, LogsDashboardAnnotationSourceLogsStrategyArgs
- Duration
Logs
Dashboard Annotation Source Logs Strategy Duration - Event start timestamp and duration are extracted from the log entry. Nested schema for duration:
- Instant
Logs
Dashboard Annotation Source Logs Strategy Instant - Event timestamp is extracted from the log entry. Nested schema for instant:
- Range
Logs
Dashboard Annotation Source Logs Strategy Range - Event start and end timestamps are extracted from the log entry. Nested schema for range:
- Duration
Logs
Dashboard Annotation Source Logs Strategy Duration - Event start timestamp and duration are extracted from the log entry. Nested schema for duration:
- Instant
Logs
Dashboard Annotation Source Logs Strategy Instant - Event timestamp is extracted from the log entry. Nested schema for instant:
- Range
Logs
Dashboard Annotation Source Logs Strategy Range - Event start and end timestamps are extracted from the log entry. Nested schema for range:
- duration
Logs
Dashboard Annotation Source Logs Strategy Duration - Event start timestamp and duration are extracted from the log entry. Nested schema for duration:
- instant
Logs
Dashboard Annotation Source Logs Strategy Instant - Event timestamp is extracted from the log entry. Nested schema for instant:
- range
Logs
Dashboard Annotation Source Logs Strategy Range - Event start and end timestamps are extracted from the log entry. Nested schema for range:
- duration
Logs
Dashboard Annotation Source Logs Strategy Duration - Event start timestamp and duration are extracted from the log entry. Nested schema for duration:
- instant
Logs
Dashboard Annotation Source Logs Strategy Instant - Event timestamp is extracted from the log entry. Nested schema for instant:
- range
Logs
Dashboard Annotation Source Logs Strategy Range - Event start and end timestamps are extracted from the log entry. Nested schema for range:
- duration
Logs
Dashboard Annotation Source Logs Strategy Duration - Event start timestamp and duration are extracted from the log entry. Nested schema for duration:
- instant
Logs
Dashboard Annotation Source Logs Strategy Instant - Event timestamp is extracted from the log entry. Nested schema for instant:
- range
Logs
Dashboard Annotation Source Logs Strategy Range - Event start and end timestamps are extracted from the log entry. Nested schema for range:
- duration Property Map
- Event start timestamp and duration are extracted from the log entry. Nested schema for duration:
- instant Property Map
- Event timestamp is extracted from the log entry. Nested schema for instant:
- range Property Map
- Event start and end timestamps are extracted from the log entry. Nested schema for range:
LogsDashboardAnnotationSourceLogsStrategyDuration, LogsDashboardAnnotationSourceLogsStrategyDurationArgs
- Duration
Field LogsDashboard Annotation Source Logs Strategy Duration Duration Field - Field to count distinct values of. Nested schema for duration_field:
- Start
Timestamp LogsField Dashboard Annotation Source Logs Strategy Duration Start Timestamp Field - Field to count distinct values of. Nested schema for start_timestamp_field:
- Duration
Field LogsDashboard Annotation Source Logs Strategy Duration Duration Field - Field to count distinct values of. Nested schema for duration_field:
- Start
Timestamp LogsField Dashboard Annotation Source Logs Strategy Duration Start Timestamp Field - Field to count distinct values of. Nested schema for start_timestamp_field:
- duration
Field LogsDashboard Annotation Source Logs Strategy Duration Duration Field - Field to count distinct values of. Nested schema for duration_field:
- start
Timestamp LogsField Dashboard Annotation Source Logs Strategy Duration Start Timestamp Field - Field to count distinct values of. Nested schema for start_timestamp_field:
- duration
Field LogsDashboard Annotation Source Logs Strategy Duration Duration Field - Field to count distinct values of. Nested schema for duration_field:
- start
Timestamp LogsField Dashboard Annotation Source Logs Strategy Duration Start Timestamp Field - Field to count distinct values of. Nested schema for start_timestamp_field:
- duration_
field LogsDashboard Annotation Source Logs Strategy Duration Duration Field - Field to count distinct values of. Nested schema for duration_field:
- start_
timestamp_ Logsfield Dashboard Annotation Source Logs Strategy Duration Start Timestamp Field - Field to count distinct values of. Nested schema for start_timestamp_field:
- duration
Field Property Map - Field to count distinct values of. Nested schema for duration_field:
- start
Timestamp Property MapField - Field to count distinct values of. Nested schema for start_timestamp_field:
LogsDashboardAnnotationSourceLogsStrategyDurationDurationField, LogsDashboardAnnotationSourceLogsStrategyDurationDurationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardAnnotationSourceLogsStrategyDurationStartTimestampField, LogsDashboardAnnotationSourceLogsStrategyDurationStartTimestampFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardAnnotationSourceLogsStrategyInstant, LogsDashboardAnnotationSourceLogsStrategyInstantArgs
- Timestamp
Field LogsDashboard Annotation Source Logs Strategy Instant Timestamp Field - Field to count distinct values of. Nested schema for timestamp_field:
- Timestamp
Field LogsDashboard Annotation Source Logs Strategy Instant Timestamp Field - Field to count distinct values of. Nested schema for timestamp_field:
- timestamp
Field LogsDashboard Annotation Source Logs Strategy Instant Timestamp Field - Field to count distinct values of. Nested schema for timestamp_field:
- timestamp
Field LogsDashboard Annotation Source Logs Strategy Instant Timestamp Field - Field to count distinct values of. Nested schema for timestamp_field:
- timestamp_
field LogsDashboard Annotation Source Logs Strategy Instant Timestamp Field - Field to count distinct values of. Nested schema for timestamp_field:
- timestamp
Field Property Map - Field to count distinct values of. Nested schema for timestamp_field:
LogsDashboardAnnotationSourceLogsStrategyInstantTimestampField, LogsDashboardAnnotationSourceLogsStrategyInstantTimestampFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardAnnotationSourceLogsStrategyRange, LogsDashboardAnnotationSourceLogsStrategyRangeArgs
- End
Timestamp LogsField Dashboard Annotation Source Logs Strategy Range End Timestamp Field - Field to count distinct values of. Nested schema for end_timestamp_field:
- Start
Timestamp LogsField Dashboard Annotation Source Logs Strategy Range Start Timestamp Field - Field to count distinct values of. Nested schema for start_timestamp_field:
- End
Timestamp LogsField Dashboard Annotation Source Logs Strategy Range End Timestamp Field - Field to count distinct values of. Nested schema for end_timestamp_field:
- Start
Timestamp LogsField Dashboard Annotation Source Logs Strategy Range Start Timestamp Field - Field to count distinct values of. Nested schema for start_timestamp_field:
- end
Timestamp LogsField Dashboard Annotation Source Logs Strategy Range End Timestamp Field - Field to count distinct values of. Nested schema for end_timestamp_field:
- start
Timestamp LogsField Dashboard Annotation Source Logs Strategy Range Start Timestamp Field - Field to count distinct values of. Nested schema for start_timestamp_field:
- end
Timestamp LogsField Dashboard Annotation Source Logs Strategy Range End Timestamp Field - Field to count distinct values of. Nested schema for end_timestamp_field:
- start
Timestamp LogsField Dashboard Annotation Source Logs Strategy Range Start Timestamp Field - Field to count distinct values of. Nested schema for start_timestamp_field:
- end_
timestamp_ Logsfield Dashboard Annotation Source Logs Strategy Range End Timestamp Field - Field to count distinct values of. Nested schema for end_timestamp_field:
- start_
timestamp_ Logsfield Dashboard Annotation Source Logs Strategy Range Start Timestamp Field - Field to count distinct values of. Nested schema for start_timestamp_field:
- end
Timestamp Property MapField - Field to count distinct values of. Nested schema for end_timestamp_field:
- start
Timestamp Property MapField - Field to count distinct values of. Nested schema for start_timestamp_field:
LogsDashboardAnnotationSourceLogsStrategyRangeEndTimestampField, LogsDashboardAnnotationSourceLogsStrategyRangeEndTimestampFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardAnnotationSourceLogsStrategyRangeStartTimestampField, LogsDashboardAnnotationSourceLogsStrategyRangeStartTimestampFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardAnnotationSourceMetrics, LogsDashboardAnnotationSourceMetricsArgs
- Labels List<string>
- Labels to display in the annotation.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Message
Template string - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Promql
Query LogsDashboard Annotation Source Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Strategy
Logs
Dashboard Annotation Source Metrics Strategy - Strategy for turning metrics data into annotations. Nested schema for strategy:
- Labels []string
- Labels to display in the annotation.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Message
Template string - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Promql
Query LogsDashboard Annotation Source Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Strategy
Logs
Dashboard Annotation Source Metrics Strategy - Strategy for turning metrics data into annotations. Nested schema for strategy:
- labels List<String>
- Labels to display in the annotation.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- message
Template String - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- promql
Query LogsDashboard Annotation Source Metrics Promql Query - PromQL query. Nested schema for promql_query:
- strategy
Logs
Dashboard Annotation Source Metrics Strategy - Strategy for turning metrics data into annotations. Nested schema for strategy:
- labels string[]
- Labels to display in the annotation.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- message
Template string - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- promql
Query LogsDashboard Annotation Source Metrics Promql Query - PromQL query. Nested schema for promql_query:
- strategy
Logs
Dashboard Annotation Source Metrics Strategy - Strategy for turning metrics data into annotations. Nested schema for strategy:
- labels Sequence[str]
- Labels to display in the annotation.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- message_
template str - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- promql_
query LogsDashboard Annotation Source Metrics Promql Query - PromQL query. Nested schema for promql_query:
- strategy
Logs
Dashboard Annotation Source Metrics Strategy - Strategy for turning metrics data into annotations. Nested schema for strategy:
- labels List<String>
- Labels to display in the annotation.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- message
Template String - Template for the annotation message.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- promql
Query Property Map - PromQL query. Nested schema for promql_query:
- strategy Property Map
- Strategy for turning metrics data into annotations. Nested schema for strategy:
LogsDashboardAnnotationSourceMetricsPromqlQuery, LogsDashboardAnnotationSourceMetricsPromqlQueryArgs
- Value string
- The PromQL query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The PromQL query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The PromQL query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The PromQL query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The PromQL query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The PromQL query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardAnnotationSourceMetricsStrategy, LogsDashboardAnnotationSourceMetricsStrategyArgs
- Start
Time LogsMetric Dashboard Annotation Source Metrics Strategy Start Time Metric - Take first data point and use its value as annotation timestamp (instead of point own timestamp). Nested schema for start_time_metric:
- Start
Time LogsMetric Dashboard Annotation Source Metrics Strategy Start Time Metric - Take first data point and use its value as annotation timestamp (instead of point own timestamp). Nested schema for start_time_metric:
- start
Time LogsMetric Dashboard Annotation Source Metrics Strategy Start Time Metric - Take first data point and use its value as annotation timestamp (instead of point own timestamp). Nested schema for start_time_metric:
- start
Time LogsMetric Dashboard Annotation Source Metrics Strategy Start Time Metric - Take first data point and use its value as annotation timestamp (instead of point own timestamp). Nested schema for start_time_metric:
- start_
time_ Logsmetric Dashboard Annotation Source Metrics Strategy Start Time Metric - Take first data point and use its value as annotation timestamp (instead of point own timestamp). Nested schema for start_time_metric:
- start
Time Property MapMetric - Take first data point and use its value as annotation timestamp (instead of point own timestamp). Nested schema for start_time_metric:
LogsDashboardFilter, LogsDashboardFilterArgs
- Collapsed bool
- Indicates if the filter's UI representation should be collapsed or expanded.
- Enabled bool
- Indicates if the filter is currently enabled or not.
- Source
Logs
Dashboard Filter Source - Filters to be applied to query results. Nested schema for source:
- Collapsed bool
- Indicates if the filter's UI representation should be collapsed or expanded.
- Enabled bool
- Indicates if the filter is currently enabled or not.
- Source
Logs
Dashboard Filter Source - Filters to be applied to query results. Nested schema for source:
- collapsed Boolean
- Indicates if the filter's UI representation should be collapsed or expanded.
- enabled Boolean
- Indicates if the filter is currently enabled or not.
- source
Logs
Dashboard Filter Source - Filters to be applied to query results. Nested schema for source:
- collapsed boolean
- Indicates if the filter's UI representation should be collapsed or expanded.
- enabled boolean
- Indicates if the filter is currently enabled or not.
- source
Logs
Dashboard Filter Source - Filters to be applied to query results. Nested schema for source:
- collapsed bool
- Indicates if the filter's UI representation should be collapsed or expanded.
- enabled bool
- Indicates if the filter is currently enabled or not.
- source
Logs
Dashboard Filter Source - Filters to be applied to query results. Nested schema for source:
- collapsed Boolean
- Indicates if the filter's UI representation should be collapsed or expanded.
- enabled Boolean
- Indicates if the filter is currently enabled or not.
- source Property Map
- Filters to be applied to query results. Nested schema for source:
LogsDashboardFilterSource, LogsDashboardFilterSourceArgs
- Logs
Logs
Dashboard Filter Source Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Filter Source Metrics - Filtering to be applied to query results. Nested schema for metrics:
- Logs
Logs
Dashboard Filter Source Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Filter Source Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Filter Source Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Filter Source Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Filter Source Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Filter Source Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Filter Source Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Filter Source Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs Property Map
- Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics Property Map
- Filtering to be applied to query results. Nested schema for metrics:
LogsDashboardFilterSourceLogs, LogsDashboardFilterSourceLogsArgs
- Observation
Field LogsDashboard Filter Source Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Filter Source Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Filter Source Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Filter Source Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Filter Source Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Filter Source Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Filter Source Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Filter Source Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Filter Source Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Filter Source Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardFilterSourceLogsObservationField, LogsDashboardFilterSourceLogsObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardFilterSourceLogsOperator, LogsDashboardFilterSourceLogsOperatorArgs
- Equals
Logs
Dashboard Filter Source Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Filter Source Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Filter Source Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Filter Source Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Filter Source Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Filter Source Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Filter Source Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Filter Source Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Filter Source Logs Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Filter Source Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardFilterSourceLogsOperatorEquals, LogsDashboardFilterSourceLogsOperatorEqualsArgs
- Selection
Logs
Dashboard Filter Source Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Filter Source Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardFilterSourceLogsOperatorEqualsSelection, LogsDashboardFilterSourceLogsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Filter Source Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Filter Source Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Filter Source Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Filter Source Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Filter Source Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Filter Source Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Filter Source Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Filter Source Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Filter Source Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Filter Source Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardFilterSourceLogsOperatorEqualsSelectionList, LogsDashboardFilterSourceLogsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardFilterSourceLogsOperatorNotEquals, LogsDashboardFilterSourceLogsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Filter Source Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Filter Source Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardFilterSourceLogsOperatorNotEqualsSelection, LogsDashboardFilterSourceLogsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Filter Source Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Filter Source Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Filter Source Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Filter Source Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Filter Source Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardFilterSourceLogsOperatorNotEqualsSelectionList, LogsDashboardFilterSourceLogsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardFilterSourceMetrics, LogsDashboardFilterSourceMetricsArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Filter Source Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Filter Source Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Filter Source Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Filter Source Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Filter Source Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardFilterSourceMetricsOperator, LogsDashboardFilterSourceMetricsOperatorArgs
- Equals
Logs
Dashboard Filter Source Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Filter Source Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Filter Source Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Filter Source Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Filter Source Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Filter Source Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Filter Source Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Filter Source Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Filter Source Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Filter Source Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardFilterSourceMetricsOperatorEquals, LogsDashboardFilterSourceMetricsOperatorEqualsArgs
- Selection
Logs
Dashboard Filter Source Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Filter Source Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardFilterSourceMetricsOperatorEqualsSelection, LogsDashboardFilterSourceMetricsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Filter Source Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Filter Source Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Filter Source Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Filter Source Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Filter Source Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Filter Source Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Filter Source Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Filter Source Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Filter Source Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Filter Source Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardFilterSourceMetricsOperatorEqualsSelectionList, LogsDashboardFilterSourceMetricsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardFilterSourceMetricsOperatorNotEquals, LogsDashboardFilterSourceMetricsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Filter Source Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Filter Source Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Filter Source Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardFilterSourceMetricsOperatorNotEqualsSelection, LogsDashboardFilterSourceMetricsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Filter Source Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Filter Source Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Filter Source Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Filter Source Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Filter Source Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardFilterSourceMetricsOperatorNotEqualsSelectionList, LogsDashboardFilterSourceMetricsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardFolderId, LogsDashboardFolderIdArgs
- Value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- Value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value String
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value str
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value String
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
LogsDashboardFolderPath, LogsDashboardFolderPathArgs
- Segments List<string>
- The segments of the folder path.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Segments []string
- The segments of the folder path.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- segments List<String>
- The segments of the folder path.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- segments string[]
- The segments of the folder path.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- segments Sequence[str]
- The segments of the folder path.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- segments List<String>
- The segments of the folder path.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayout, LogsDashboardLayoutArgs
- Sections
List<Logs
Dashboard Layout Section> - The sections of the layout.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for sections:
- Constraints: The maximum length is
- Sections
[]Logs
Dashboard Layout Section - The sections of the layout.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for sections:
- Constraints: The maximum length is
- sections
List<Logs
Dashboard Layout Section> - The sections of the layout.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for sections:
- Constraints: The maximum length is
- sections
Logs
Dashboard Layout Section[] - The sections of the layout.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for sections:
- Constraints: The maximum length is
- sections
Sequence[Logs
Dashboard Layout Section] - The sections of the layout.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for sections:
- Constraints: The maximum length is
- sections List<Property Map>
- The sections of the layout.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for sections:
- Constraints: The maximum length is
LogsDashboardLayoutSection, LogsDashboardLayoutSectionArgs
- Id
Logs
Dashboard Layout Section Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- Href string
- The unique identifier of the section within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Rows
List<Logs
Dashboard Layout Section Row> - The rows of the section.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for rows:
- Constraints: The maximum length is
- Id
Logs
Dashboard Layout Section Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- Href string
- The unique identifier of the section within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Rows
[]Logs
Dashboard Layout Section Row - The rows of the section.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for rows:
- Constraints: The maximum length is
- id
Logs
Dashboard Layout Section Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- href String
- The unique identifier of the section within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- rows
List<Logs
Dashboard Layout Section Row> - The rows of the section.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for rows:
- Constraints: The maximum length is
- id
Logs
Dashboard Layout Section Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- href string
- The unique identifier of the section within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- rows
Logs
Dashboard Layout Section Row[] - The rows of the section.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for rows:
- Constraints: The maximum length is
- id
Logs
Dashboard Layout Section Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- href str
- The unique identifier of the section within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- rows
Sequence[Logs
Dashboard Layout Section Row] - The rows of the section.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for rows:
- Constraints: The maximum length is
- id Property Map
- Unique identifier of the folder containing the dashboard. Nested schema for id:
- href String
- The unique identifier of the section within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- rows List<Property Map>
- The rows of the section.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for rows:
- Constraints: The maximum length is
LogsDashboardLayoutSectionId, LogsDashboardLayoutSectionIdArgs
- Value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- Value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value String
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value str
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value String
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRow, LogsDashboardLayoutSectionRowArgs
- Appearance
Logs
Dashboard Layout Section Row Appearance - The appearance of the row, such as height. Nested schema for appearance:
- Id
Logs
Dashboard Layout Section Row Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- Href string
- The unique identifier of the row within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Widgets
List<Logs
Dashboard Layout Section Row Widget> - The widgets of the row.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for widgets:
- Constraints: The maximum length is
- Appearance
Logs
Dashboard Layout Section Row Appearance - The appearance of the row, such as height. Nested schema for appearance:
- Id
Logs
Dashboard Layout Section Row Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- Href string
- The unique identifier of the row within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Widgets
[]Logs
Dashboard Layout Section Row Widget - The widgets of the row.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for widgets:
- Constraints: The maximum length is
- appearance
Logs
Dashboard Layout Section Row Appearance - The appearance of the row, such as height. Nested schema for appearance:
- id
Logs
Dashboard Layout Section Row Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- href String
- The unique identifier of the row within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- widgets
List<Logs
Dashboard Layout Section Row Widget> - The widgets of the row.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for widgets:
- Constraints: The maximum length is
- appearance
Logs
Dashboard Layout Section Row Appearance - The appearance of the row, such as height. Nested schema for appearance:
- id
Logs
Dashboard Layout Section Row Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- href string
- The unique identifier of the row within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- widgets
Logs
Dashboard Layout Section Row Widget[] - The widgets of the row.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for widgets:
- Constraints: The maximum length is
- appearance
Logs
Dashboard Layout Section Row Appearance - The appearance of the row, such as height. Nested schema for appearance:
- id
Logs
Dashboard Layout Section Row Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- href str
- The unique identifier of the row within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- widgets
Sequence[Logs
Dashboard Layout Section Row Widget] - The widgets of the row.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for widgets:
- Constraints: The maximum length is
- appearance Property Map
- The appearance of the row, such as height. Nested schema for appearance:
- id Property Map
- Unique identifier of the folder containing the dashboard. Nested schema for id:
- href String
- The unique identifier of the row within the layout.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- widgets List<Property Map>
- The widgets of the row.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for widgets:
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowAppearance, LogsDashboardLayoutSectionRowAppearanceArgs
- Height double
- The height of the row.
- Height float64
- The height of the row.
- height Double
- The height of the row.
- height number
- The height of the row.
- height float
- The height of the row.
- height Number
- The height of the row.
LogsDashboardLayoutSectionRowId, LogsDashboardLayoutSectionRowIdArgs
- Value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- Value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value String
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value str
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value String
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidget, LogsDashboardLayoutSectionRowWidgetArgs
- Definition
Logs
Dashboard Layout Section Row Widget Definition - Widget definition, contains the widget type and its configuration. Nested schema for definition:
- Id
Logs
Dashboard Layout Section Row Widget Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- Title string
- Widget title.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Created
At string - Creation timestamp.
- Description string
- Widget description.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Href string
- Widget identifier within the dashboard.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Updated
At string - Last update timestamp.
- Definition
Logs
Dashboard Layout Section Row Widget Definition - Widget definition, contains the widget type and its configuration. Nested schema for definition:
- Id
Logs
Dashboard Layout Section Row Widget Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- Title string
- Widget title.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Created
At string - Creation timestamp.
- Description string
- Widget description.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Href string
- Widget identifier within the dashboard.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Updated
At string - Last update timestamp.
- definition
Logs
Dashboard Layout Section Row Widget Definition - Widget definition, contains the widget type and its configuration. Nested schema for definition:
- id
Logs
Dashboard Layout Section Row Widget Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- title String
- Widget title.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- created
At String - Creation timestamp.
- description String
- Widget description.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- href String
- Widget identifier within the dashboard.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- updated
At String - Last update timestamp.
- definition
Logs
Dashboard Layout Section Row Widget Definition - Widget definition, contains the widget type and its configuration. Nested schema for definition:
- id
Logs
Dashboard Layout Section Row Widget Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- title string
- Widget title.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- created
At string - Creation timestamp.
- description string
- Widget description.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- href string
- Widget identifier within the dashboard.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- updated
At string - Last update timestamp.
- definition
Logs
Dashboard Layout Section Row Widget Definition - Widget definition, contains the widget type and its configuration. Nested schema for definition:
- id
Logs
Dashboard Layout Section Row Widget Id - Unique identifier of the folder containing the dashboard. Nested schema for id:
- title str
- Widget title.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- created_
at str - Creation timestamp.
- description str
- Widget description.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- href str
- Widget identifier within the dashboard.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- updated_
at str - Last update timestamp.
- definition Property Map
- Widget definition, contains the widget type and its configuration. Nested schema for definition:
- id Property Map
- Unique identifier of the folder containing the dashboard. Nested schema for id:
- title String
- Widget title.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- created
At String - Creation timestamp.
- description String
- Widget description.
- Constraints: The maximum length is
200
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- href String
- Widget identifier within the dashboard.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- updated
At String - Last update timestamp.
LogsDashboardLayoutSectionRowWidgetDefinition, LogsDashboardLayoutSectionRowWidgetDefinitionArgs
- Bar
Chart LogsDashboard Layout Section Row Widget Definition Bar Chart - Bar chart widget. Nested schema for bar_chart:
- Data
Table LogsDashboard Layout Section Row Widget Definition Data Table - Data table widget. Nested schema for data_table:
- Gauge
Logs
Dashboard Layout Section Row Widget Definition Gauge - Gauge widget. Nested schema for gauge:
- Horizontal
Bar LogsChart Dashboard Layout Section Row Widget Definition Horizontal Bar Chart - Horizontal bar chart widget. Nested schema for horizontal_bar_chart:
- Line
Chart LogsDashboard Layout Section Row Widget Definition Line Chart - Line chart widget. Nested schema for line_chart:
- Markdown
Logs
Dashboard Layout Section Row Widget Definition Markdown - Markdown widget. Nested schema for markdown:
- Pie
Chart LogsDashboard Layout Section Row Widget Definition Pie Chart - Pie chart widget. Nested schema for pie_chart:
- Bar
Chart LogsDashboard Layout Section Row Widget Definition Bar Chart - Bar chart widget. Nested schema for bar_chart:
- Data
Table LogsDashboard Layout Section Row Widget Definition Data Table - Data table widget. Nested schema for data_table:
- Gauge
Logs
Dashboard Layout Section Row Widget Definition Gauge - Gauge widget. Nested schema for gauge:
- Horizontal
Bar LogsChart Dashboard Layout Section Row Widget Definition Horizontal Bar Chart - Horizontal bar chart widget. Nested schema for horizontal_bar_chart:
- Line
Chart LogsDashboard Layout Section Row Widget Definition Line Chart - Line chart widget. Nested schema for line_chart:
- Markdown
Logs
Dashboard Layout Section Row Widget Definition Markdown - Markdown widget. Nested schema for markdown:
- Pie
Chart LogsDashboard Layout Section Row Widget Definition Pie Chart - Pie chart widget. Nested schema for pie_chart:
- bar
Chart LogsDashboard Layout Section Row Widget Definition Bar Chart - Bar chart widget. Nested schema for bar_chart:
- data
Table LogsDashboard Layout Section Row Widget Definition Data Table - Data table widget. Nested schema for data_table:
- gauge
Logs
Dashboard Layout Section Row Widget Definition Gauge - Gauge widget. Nested schema for gauge:
- horizontal
Bar LogsChart Dashboard Layout Section Row Widget Definition Horizontal Bar Chart - Horizontal bar chart widget. Nested schema for horizontal_bar_chart:
- line
Chart LogsDashboard Layout Section Row Widget Definition Line Chart - Line chart widget. Nested schema for line_chart:
- markdown
Logs
Dashboard Layout Section Row Widget Definition Markdown - Markdown widget. Nested schema for markdown:
- pie
Chart LogsDashboard Layout Section Row Widget Definition Pie Chart - Pie chart widget. Nested schema for pie_chart:
- bar
Chart LogsDashboard Layout Section Row Widget Definition Bar Chart - Bar chart widget. Nested schema for bar_chart:
- data
Table LogsDashboard Layout Section Row Widget Definition Data Table - Data table widget. Nested schema for data_table:
- gauge
Logs
Dashboard Layout Section Row Widget Definition Gauge - Gauge widget. Nested schema for gauge:
- horizontal
Bar LogsChart Dashboard Layout Section Row Widget Definition Horizontal Bar Chart - Horizontal bar chart widget. Nested schema for horizontal_bar_chart:
- line
Chart LogsDashboard Layout Section Row Widget Definition Line Chart - Line chart widget. Nested schema for line_chart:
- markdown
Logs
Dashboard Layout Section Row Widget Definition Markdown - Markdown widget. Nested schema for markdown:
- pie
Chart LogsDashboard Layout Section Row Widget Definition Pie Chart - Pie chart widget. Nested schema for pie_chart:
- bar_
chart LogsDashboard Layout Section Row Widget Definition Bar Chart - Bar chart widget. Nested schema for bar_chart:
- data_
table LogsDashboard Layout Section Row Widget Definition Data Table - Data table widget. Nested schema for data_table:
- gauge
Logs
Dashboard Layout Section Row Widget Definition Gauge - Gauge widget. Nested schema for gauge:
- horizontal_
bar_ Logschart Dashboard Layout Section Row Widget Definition Horizontal Bar Chart - Horizontal bar chart widget. Nested schema for horizontal_bar_chart:
- line_
chart LogsDashboard Layout Section Row Widget Definition Line Chart - Line chart widget. Nested schema for line_chart:
- markdown
Logs
Dashboard Layout Section Row Widget Definition Markdown - Markdown widget. Nested schema for markdown:
- pie_
chart LogsDashboard Layout Section Row Widget Definition Pie Chart - Pie chart widget. Nested schema for pie_chart:
- bar
Chart Property Map - Bar chart widget. Nested schema for bar_chart:
- data
Table Property Map - Data table widget. Nested schema for data_table:
- gauge Property Map
- Gauge widget. Nested schema for gauge:
- horizontal
Bar Property MapChart - Horizontal bar chart widget. Nested schema for horizontal_bar_chart:
- line
Chart Property Map - Line chart widget. Nested schema for line_chart:
- markdown Property Map
- Markdown widget. Nested schema for markdown:
- pie
Chart Property Map - Pie chart widget. Nested schema for pie_chart:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChart, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartArgs
- Color
Scheme string - Supported vaues: classic, severity, cold, negative, green, red, blue.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Colors
By LogsDashboard Layout Section Row Widget Definition Bar Chart Colors By - Coloring mode. Nested schema for colors_by:
- Group
Name stringTemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Max
Bars doublePer Chart - Maximum number of bars to present in the chart.
- Query
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Scale
Type string - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- Sort
By string - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- Stack
Definition LogsDashboard Layout Section Row Widget Definition Bar Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- Unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- XAxis
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis - X axis mode. Nested schema for x_axis:
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Color
Scheme string - Supported vaues: classic, severity, cold, negative, green, red, blue.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Colors
By LogsDashboard Layout Section Row Widget Definition Bar Chart Colors By - Coloring mode. Nested schema for colors_by:
- Group
Name stringTemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Max
Bars float64Per Chart - Maximum number of bars to present in the chart.
- Query
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Scale
Type string - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- Sort
By string - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- Stack
Definition LogsDashboard Layout Section Row Widget Definition Bar Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- Unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- XAxis
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis - X axis mode. Nested schema for x_axis:
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- color
Scheme String - Supported vaues: classic, severity, cold, negative, green, red, blue.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- colors
By LogsDashboard Layout Section Row Widget Definition Bar Chart Colors By - Coloring mode. Nested schema for colors_by:
- group
Name StringTemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Bars DoublePer Chart - Maximum number of bars to present in the chart.
- query
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- scale
Type String - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- sort
By String - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- stack
Definition LogsDashboard Layout Section Row Widget Definition Bar Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- unit String
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- x
Axis LogsDashboard Layout Section Row Widget Definition Bar Chart XAxis - X axis mode. Nested schema for x_axis:
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- color
Scheme string - Supported vaues: classic, severity, cold, negative, green, red, blue.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- colors
By LogsDashboard Layout Section Row Widget Definition Bar Chart Colors By - Coloring mode. Nested schema for colors_by:
- group
Name stringTemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Bars numberPer Chart - Maximum number of bars to present in the chart.
- query
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- scale
Type string - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- sort
By string - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- stack
Definition LogsDashboard Layout Section Row Widget Definition Bar Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- x
Axis LogsDashboard Layout Section Row Widget Definition Bar Chart XAxis - X axis mode. Nested schema for x_axis:
- data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- color_
scheme str - Supported vaues: classic, severity, cold, negative, green, red, blue.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- colors_
by LogsDashboard Layout Section Row Widget Definition Bar Chart Colors By - Coloring mode. Nested schema for colors_by:
- group_
name_ strtemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max_
bars_ floatper_ chart - Maximum number of bars to present in the chart.
- query
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- scale_
type str - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- sort_
by str - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- stack_
definition LogsDashboard Layout Section Row Widget Definition Bar Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- unit str
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- x_
axis LogsDashboard Layout Section Row Widget Definition Bar Chart XAxis - X axis mode. Nested schema for x_axis:
- data_
mode_ strtype - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- color
Scheme String - Supported vaues: classic, severity, cold, negative, green, red, blue.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- colors
By Property Map - Coloring mode. Nested schema for colors_by:
- group
Name StringTemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Bars NumberPer Chart - Maximum number of bars to present in the chart.
- query Property Map
- Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- scale
Type String - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- sort
By String - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- stack
Definition Property Map - Stack definition. Nested schema for stack_definition:
- unit String
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- x
Axis Property Map - X axis mode. Nested schema for x_axis:
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartColorsBy, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartColorsByArgs
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Colors By Aggregation - Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- Group
By LogsDashboard Layout Section Row Widget Definition Bar Chart Colors By Group By - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- Stack
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Colors By Stack - Each stack will have the same color across all groups. Nested schema for stack:
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Colors By Aggregation - Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- Group
By LogsDashboard Layout Section Row Widget Definition Bar Chart Colors By Group By - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- Stack
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Colors By Stack - Each stack will have the same color across all groups. Nested schema for stack:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Colors By Aggregation - Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- group
By LogsDashboard Layout Section Row Widget Definition Bar Chart Colors By Group By - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- stack
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Colors By Stack - Each stack will have the same color across all groups. Nested schema for stack:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Colors By Aggregation - Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- group
By LogsDashboard Layout Section Row Widget Definition Bar Chart Colors By Group By - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- stack
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Colors By Stack - Each stack will have the same color across all groups. Nested schema for stack:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Colors By Aggregation - Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- group_
by LogsDashboard Layout Section Row Widget Definition Bar Chart Colors By Group By - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- stack
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Colors By Stack - Each stack will have the same color across all groups. Nested schema for stack:
- aggregation Property Map
- Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- group
By Property Map - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- stack Property Map
- Each stack will have the same color across all groups. Nested schema for stack:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQuery, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryArgs
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime Property Map
- Query based on Dataprime language. Nested schema for dataprime:
- logs Property Map
- Logs specific query. Nested schema for logs:
- metrics Property Map
- Metrics specific query. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprime, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeArgs
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter> - Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names List<string> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter - Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names []string - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter> - Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked
Group StringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter[] - Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names string[] - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime_
query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter] - Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group_
names Sequence[str] - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked_
group_ strname - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime
Query Property Map - Dataprime query. Nested schema for dataprime_query:
- filters List<Property Map>
- Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked
Group StringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeDataprimeQuery, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeDataprimeQueryArgs
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilter, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterArgs
- Logs
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs Property Map
- Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics Property Map
- Filtering to be applied to query results. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogs, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogs, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsArgs
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter> - Extra filter on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names List<LogsFields Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Group Names Field> - Fiel to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter - Extra filter on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names []LogsFields Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Group Names Field - Fiel to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter> - Extra filter on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<LogsFields Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Group Names Field> - Fiel to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- filters
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter[] - Extra filter on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names LogsFields Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Group Names Field[] - Fiel to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter] - Extra filter on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group_
names_ Sequence[Logsfields Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Group Names Field] - Fiel to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene_
query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- stacked_
group_ Logsname_ field Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation Property Map
- Aggregations. Nested schema for aggregation:
- filters List<Property Map>
- Extra filter on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<Property Map>Fields - Fiel to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene
Query Property Map - Lucene query. Nested schema for lucene_query:
- stacked
Group Property MapName Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregation, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationArgs
- Average
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- Average
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count_
distinct LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average Property Map
- Calculate average value of log field. Nested schema for average:
- count Property Map
- Count the number of entries. Nested schema for count:
- count
Distinct Property Map - Count the number of distinct values of log field. Nested schema for count_distinct:
- max Property Map
- Calculate maximum value of log field. Nested schema for max:
- min Property Map
- Calculate minimum value of log field. Nested schema for min:
- percentile Property Map
- Calculate percentile value of log field. Nested schema for percentile:
- sum Property Map
- Sum values of log field. Nested schema for sum:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationAverage, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationAverageArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationAverageObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationAverageObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountDistinct, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountDistinctArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountDistinctObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationCountDistinctObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMax, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMaxArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMaxObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMaxObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMin, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMinArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMinObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationMinObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationPercentile, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationPercentileArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent double
- Value in range (0, 100].
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent float64
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent Double
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent number
- Value in range (0, 100].
- observation_
field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent float
- Value in range (0, 100].
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- percent Number
- Value in range (0, 100].
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationPercentileObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationPercentileObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationSum, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationSumArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationSumObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsAggregationSumObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsGroupNamesField, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsGroupNamesFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsLuceneQuery, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsLuceneQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsStackedGroupNameField, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryLogsStackedGroupNameFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsArgs
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter> - Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names List<string> - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Promql
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Stacked
Group stringName - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter - Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names []string - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Promql
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Stacked
Group stringName - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter> - Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- promql
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- stacked
Group StringName - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- filters
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter[] - Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names string[] - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- promql
Query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- stacked
Group stringName - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter] - Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group_
names Sequence[str] - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- promql_
query LogsDashboard Layout Section Row Widget Definition Bar Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- stacked_
group_ strname - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- filters List<Property Map>
- Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- promql
Query Property Map - PromQL query. Nested schema for promql_query:
- stacked
Group StringName - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Bar Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsPromqlQuery, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartQueryMetricsPromqlQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartStackDefinition, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartStackDefinitionArgs
- Max
Slices doublePer Bar - Maximum number of slices per bar.
- Stack
Name stringTemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Max
Slices float64Per Bar - Maximum number of slices per bar.
- Stack
Name stringTemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Slices DoublePer Bar - Maximum number of slices per bar.
- stack
Name StringTemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Slices numberPer Bar - Maximum number of slices per bar.
- stack
Name stringTemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max_
slices_ floatper_ bar - Maximum number of slices per bar.
- stack_
name_ strtemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Slices NumberPer Bar - Maximum number of slices per bar.
- stack
Name StringTemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxis, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxisArgs
- Time
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis Time - Time based axis. Nested schema for time:
- Value
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis Value - Categorical axis. Nested schema for value:
- Time
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis Time - Time based axis. Nested schema for time:
- Value
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis Value - Categorical axis. Nested schema for value:
- time
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis Time - Time based axis. Nested schema for time:
- value
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis Value - Categorical axis. Nested schema for value:
- time
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis Time - Time based axis. Nested schema for time:
- value
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis Value - Categorical axis. Nested schema for value:
- time
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis Time - Time based axis. Nested schema for time:
- value
Logs
Dashboard Layout Section Row Widget Definition Bar Chart XAxis Value - Categorical axis. Nested schema for value:
- time Property Map
- Time based axis. Nested schema for time:
- value Property Map
- Categorical axis. Nested schema for value:
LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxisTime, LogsDashboardLayoutSectionRowWidgetDefinitionBarChartXAxisTimeArgs
- Buckets
Presented double - Buckets presented.
- Interval string
- Time interval.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- Buckets
Presented float64 - Buckets presented.
- Interval string
- Time interval.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- buckets
Presented Double - Buckets presented.
- interval String
- Time interval.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- buckets
Presented number - Buckets presented.
- interval string
- Time interval.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- buckets_
presented float - Buckets presented.
- interval str
- Time interval.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- buckets
Presented Number - Buckets presented.
- interval String
- Time interval.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionDataTable, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableArgs
- Query
Logs
Dashboard Layout Section Row Widget Definition Data Table Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Results
Per doublePage - Number of results per page.
- Row
Style string - Display style for table rows.
- Constraints: Allowable values are:
unspecified
,one_line
,two_line
,condensed
,json
,list
.
- Constraints: Allowable values are:
- Columns
List<Logs
Dashboard Layout Section Row Widget Definition Data Table Column> - Columns to display, their order and width.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for columns:
- Constraints: The maximum length is
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Order
By LogsDashboard Layout Section Row Widget Definition Data Table Order By - Column used for ordering the results. Nested schema for order_by:
- Query
Logs
Dashboard Layout Section Row Widget Definition Data Table Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Results
Per float64Page - Number of results per page.
- Row
Style string - Display style for table rows.
- Constraints: Allowable values are:
unspecified
,one_line
,two_line
,condensed
,json
,list
.
- Constraints: Allowable values are:
- Columns
[]Logs
Dashboard Layout Section Row Widget Definition Data Table Column - Columns to display, their order and width.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for columns:
- Constraints: The maximum length is
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Order
By LogsDashboard Layout Section Row Widget Definition Data Table Order By - Column used for ordering the results. Nested schema for order_by:
- query
Logs
Dashboard Layout Section Row Widget Definition Data Table Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- results
Per DoublePage - Number of results per page.
- row
Style String - Display style for table rows.
- Constraints: Allowable values are:
unspecified
,one_line
,two_line
,condensed
,json
,list
.
- Constraints: Allowable values are:
- columns
List<Logs
Dashboard Layout Section Row Widget Definition Data Table Column> - Columns to display, their order and width.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for columns:
- Constraints: The maximum length is
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- order
By LogsDashboard Layout Section Row Widget Definition Data Table Order By - Column used for ordering the results. Nested schema for order_by:
- query
Logs
Dashboard Layout Section Row Widget Definition Data Table Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- results
Per numberPage - Number of results per page.
- row
Style string - Display style for table rows.
- Constraints: Allowable values are:
unspecified
,one_line
,two_line
,condensed
,json
,list
.
- Constraints: Allowable values are:
- columns
Logs
Dashboard Layout Section Row Widget Definition Data Table Column[] - Columns to display, their order and width.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for columns:
- Constraints: The maximum length is
- data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- order
By LogsDashboard Layout Section Row Widget Definition Data Table Order By - Column used for ordering the results. Nested schema for order_by:
- query
Logs
Dashboard Layout Section Row Widget Definition Data Table Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- results_
per_ floatpage - Number of results per page.
- row_
style str - Display style for table rows.
- Constraints: Allowable values are:
unspecified
,one_line
,two_line
,condensed
,json
,list
.
- Constraints: Allowable values are:
- columns
Sequence[Logs
Dashboard Layout Section Row Widget Definition Data Table Column] - Columns to display, their order and width.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for columns:
- Constraints: The maximum length is
- data_
mode_ strtype - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- order_
by LogsDashboard Layout Section Row Widget Definition Data Table Order By - Column used for ordering the results. Nested schema for order_by:
- query Property Map
- Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- results
Per NumberPage - Number of results per page.
- row
Style String - Display style for table rows.
- Constraints: Allowable values are:
unspecified
,one_line
,two_line
,condensed
,json
,list
.
- Constraints: Allowable values are:
- columns List<Property Map>
- Columns to display, their order and width.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for columns:
- Constraints: The maximum length is
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- order
By Property Map - Column used for ordering the results. Nested schema for order_by:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableColumn, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableColumnArgs
- Field string
- References a field in result set. In case of aggregation, it references the aggregation identifier.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Width double
- Column width.
- Field string
- References a field in result set. In case of aggregation, it references the aggregation identifier.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Width float64
- Column width.
- field String
- References a field in result set. In case of aggregation, it references the aggregation identifier.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- width Double
- Column width.
- field string
- References a field in result set. In case of aggregation, it references the aggregation identifier.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- width number
- Column width.
- field str
- References a field in result set. In case of aggregation, it references the aggregation identifier.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- width float
- Column width.
- field String
- References a field in result set. In case of aggregation, it references the aggregation identifier.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- width Number
- Column width.
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableOrderBy, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableOrderByArgs
- Field string
- The field to order by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Order
Direction string - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
- Field string
- The field to order by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Order
Direction string - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
- field String
- The field to order by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- order
Direction String - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
- field string
- The field to order by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- order
Direction string - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
- field str
- The field to order by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- order_
direction str - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
- field String
- The field to order by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- order
Direction String - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQuery, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryArgs
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics - Metrics specific query. Nested schema for metrics:
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime Property Map
- Query based on Dataprime language. Nested schema for dataprime:
- logs Property Map
- Logs specific query. Nested schema for logs:
- metrics Property Map
- Metrics specific query. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprime, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeArgs
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter> - Extra filtering on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter - Extra filtering on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter> - Extra filtering on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter[] - Extra filtering on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime_
query LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter] - Extra filtering on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime
Query Property Map - Dataprime query. Nested schema for dataprime_query:
- filters List<Property Map>
- Extra filtering on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeDataprimeQuery, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeDataprimeQueryArgs
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilter, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterArgs
- Logs
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs Property Map
- Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics Property Map
- Filtering to be applied to query results. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogs, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogs, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsArgs
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter> - Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Grouping
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping - Grouping and aggregation. Nested schema for grouping:
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter - Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Grouping
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping - Grouping and aggregation. Nested schema for grouping:
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter> - Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- grouping
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping - Grouping and aggregation. Nested schema for grouping:
- lucene
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter[] - Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- grouping
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping - Grouping and aggregation. Nested schema for grouping:
- lucene
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter] - Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- grouping
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping - Grouping and aggregation. Nested schema for grouping:
- lucene_
query LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- filters List<Property Map>
- Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- grouping Property Map
- Grouping and aggregation. Nested schema for grouping:
- lucene
Query Property Map - Lucene query. Nested schema for lucene_query:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGrouping, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingArgs
- Aggregations
List<Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation> - Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- Group
Bys List<LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Group By> - Fields to group by.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- Aggregations
[]Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation - Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- Group
Bys []LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Group By - Fields to group by.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- aggregations
List<Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation> - Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- group
Bys List<LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Group By> - Fields to group by.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- aggregations
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation[] - Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- group
Bys LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Group By[] - Fields to group by.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- aggregations
Sequence[Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation] - Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- group_
bys Sequence[LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Group By] - Fields to group by.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- aggregations List<Property Map>
- Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- group
Bys List<Property Map> - Fields to group by.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregation, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationArgs
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation - Aggregations. Nested schema for aggregation:
- Id string
- Aggregation identifier, must be unique within grouping configuration.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Is
Visible bool - Whether the aggregation is visible.
- Name string
- Aggregation name, used as column name.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation - Aggregations. Nested schema for aggregation:
- Id string
- Aggregation identifier, must be unique within grouping configuration.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Is
Visible bool - Whether the aggregation is visible.
- Name string
- Aggregation name, used as column name.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation - Aggregations. Nested schema for aggregation:
- id String
- Aggregation identifier, must be unique within grouping configuration.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- is
Visible Boolean - Whether the aggregation is visible.
- name String
- Aggregation name, used as column name.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation - Aggregations. Nested schema for aggregation:
- id string
- Aggregation identifier, must be unique within grouping configuration.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- is
Visible boolean - Whether the aggregation is visible.
- name string
- Aggregation name, used as column name.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation - Aggregations. Nested schema for aggregation:
- id str
- Aggregation identifier, must be unique within grouping configuration.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- is_
visible bool - Whether the aggregation is visible.
- name str
- Aggregation name, used as column name.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- aggregation Property Map
- Aggregations. Nested schema for aggregation:
- id String
- Aggregation identifier, must be unique within grouping configuration.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- is
Visible Boolean - Whether the aggregation is visible.
- name String
- Aggregation name, used as column name.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregation, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationArgs
- Average
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Sum - Sum values of log field. Nested schema for sum:
- Average
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count - Count the number of entries. Nested schema for count:
- count_
distinct LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Sum - Sum values of log field. Nested schema for sum:
- average Property Map
- Calculate average value of log field. Nested schema for average:
- count Property Map
- Count the number of entries. Nested schema for count:
- count
Distinct Property Map - Count the number of distinct values of log field. Nested schema for count_distinct:
- max Property Map
- Calculate maximum value of log field. Nested schema for max:
- min Property Map
- Calculate minimum value of log field. Nested schema for min:
- percentile Property Map
- Calculate percentile value of log field. Nested schema for percentile:
- sum Property Map
- Sum values of log field. Nested schema for sum:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationAverage, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationAverageArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationAverageObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationAverageObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountDistinct, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountDistinctArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountDistinctObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationCountDistinctObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMax, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMaxArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMaxObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMaxObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMin, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMinArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMinObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationMinObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationPercentile, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationPercentileArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent double
- Value in range (0, 100].
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent float64
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent Double
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent number
- Value in range (0, 100].
- observation_
field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent float
- Value in range (0, 100].
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- percent Number
- Value in range (0, 100].
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationPercentileObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationPercentileObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationSum, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationSumArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Data Table Query Logs Grouping Aggregation Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationSumObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingAggregationAggregationSumObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingGroupBy, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsGroupingGroupByArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsLuceneQuery, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryLogsLuceneQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsArgs
- Promql
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter> - Extra filtering on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Promql
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter - Extra filtering on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- promql
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter> - Extra filtering on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- promql
Query LogsDashboard Layout Section Row Widget Definition Data Table Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter[] - Extra filtering on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- promql_
query LogsDashboard Layout Section Row Widget Definition Data Table Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter] - Extra filtering on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- promql
Query Property Map - PromQL query. Nested schema for promql_query:
- filters List<Property Map>
- Extra filtering on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Data Table Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsPromqlQuery, LogsDashboardLayoutSectionRowWidgetDefinitionDataTableQueryMetricsPromqlQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionGauge, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeArgs
- Max double
- Maximum value of the gauge.
- Min double
- Minimum value of the gauge.
- Query
Logs
Dashboard Layout Section Row Widget Definition Gauge Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Show
Inner boolArc - Show inner arc (styling).
- Show
Outer boolArc - Show outer arc (styling).
- Threshold
By string - What threshold color should be applied to: value or background.
- Constraints: Allowable values are:
unspecified
,value
,background
.
- Constraints: Allowable values are:
- Unit string
- Query result value interpretation.
- Constraints: Allowable values are:
unspecified
,number
,percent
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Thresholds
List<Logs
Dashboard Layout Section Row Widget Definition Gauge Threshold> - Thresholds for the gauge, values at which the gauge changes color.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for thresholds:
- Constraints: The maximum length is
- Max float64
- Maximum value of the gauge.
- Min float64
- Minimum value of the gauge.
- Query
Logs
Dashboard Layout Section Row Widget Definition Gauge Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Show
Inner boolArc - Show inner arc (styling).
- Show
Outer boolArc - Show outer arc (styling).
- Threshold
By string - What threshold color should be applied to: value or background.
- Constraints: Allowable values are:
unspecified
,value
,background
.
- Constraints: Allowable values are:
- Unit string
- Query result value interpretation.
- Constraints: Allowable values are:
unspecified
,number
,percent
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Thresholds
[]Logs
Dashboard Layout Section Row Widget Definition Gauge Threshold - Thresholds for the gauge, values at which the gauge changes color.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for thresholds:
- Constraints: The maximum length is
- max Double
- Maximum value of the gauge.
- min Double
- Minimum value of the gauge.
- query
Logs
Dashboard Layout Section Row Widget Definition Gauge Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- show
Inner BooleanArc - Show inner arc (styling).
- show
Outer BooleanArc - Show outer arc (styling).
- threshold
By String - What threshold color should be applied to: value or background.
- Constraints: Allowable values are:
unspecified
,value
,background
.
- Constraints: Allowable values are:
- unit String
- Query result value interpretation.
- Constraints: Allowable values are:
unspecified
,number
,percent
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- thresholds
List<Logs
Dashboard Layout Section Row Widget Definition Gauge Threshold> - Thresholds for the gauge, values at which the gauge changes color.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for thresholds:
- Constraints: The maximum length is
- max number
- Maximum value of the gauge.
- min number
- Minimum value of the gauge.
- query
Logs
Dashboard Layout Section Row Widget Definition Gauge Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- show
Inner booleanArc - Show inner arc (styling).
- show
Outer booleanArc - Show outer arc (styling).
- threshold
By string - What threshold color should be applied to: value or background.
- Constraints: Allowable values are:
unspecified
,value
,background
.
- Constraints: Allowable values are:
- unit string
- Query result value interpretation.
- Constraints: Allowable values are:
unspecified
,number
,percent
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- thresholds
Logs
Dashboard Layout Section Row Widget Definition Gauge Threshold[] - Thresholds for the gauge, values at which the gauge changes color.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for thresholds:
- Constraints: The maximum length is
- max float
- Maximum value of the gauge.
- min float
- Minimum value of the gauge.
- query
Logs
Dashboard Layout Section Row Widget Definition Gauge Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- show_
inner_ boolarc - Show inner arc (styling).
- show_
outer_ boolarc - Show outer arc (styling).
- threshold_
by str - What threshold color should be applied to: value or background.
- Constraints: Allowable values are:
unspecified
,value
,background
.
- Constraints: Allowable values are:
- unit str
- Query result value interpretation.
- Constraints: Allowable values are:
unspecified
,number
,percent
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- data_
mode_ strtype - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- thresholds
Sequence[Logs
Dashboard Layout Section Row Widget Definition Gauge Threshold] - Thresholds for the gauge, values at which the gauge changes color.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for thresholds:
- Constraints: The maximum length is
- max Number
- Maximum value of the gauge.
- min Number
- Minimum value of the gauge.
- query Property Map
- Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- show
Inner BooleanArc - Show inner arc (styling).
- show
Outer BooleanArc - Show outer arc (styling).
- threshold
By String - What threshold color should be applied to: value or background.
- Constraints: Allowable values are:
unspecified
,value
,background
.
- Constraints: Allowable values are:
- unit String
- Query result value interpretation.
- Constraints: Allowable values are:
unspecified
,number
,percent
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- thresholds List<Property Map>
- Thresholds for the gauge, values at which the gauge changes color.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for thresholds:
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQuery, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryArgs
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics - Metrics specific query. Nested schema for metrics:
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime Property Map
- Query based on Dataprime language. Nested schema for dataprime:
- logs Property Map
- Logs specific query. Nested schema for logs:
- metrics Property Map
- Metrics specific query. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprime, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeArgs
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter> - Extra filters applied on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter - Extra filters applied on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter> - Extra filters applied on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter[] - Extra filters applied on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime_
query LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter] - Extra filters applied on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime
Query Property Map - Dataprime query. Nested schema for dataprime_query:
- filters List<Property Map>
- Extra filters applied on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeDataprimeQuery, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeDataprimeQueryArgs
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilter, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterArgs
- Logs
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs Property Map
- Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics Property Map
- Filtering to be applied to query results. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogs, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogs, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsArgs
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter> - Extra filters applied on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Logs
Aggregation LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation - Aggregations. Nested schema for logs_aggregation:
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter - Extra filters applied on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Logs
Aggregation LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation - Aggregations. Nested schema for logs_aggregation:
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter> - Extra filters applied on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- logs
Aggregation LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation - Aggregations. Nested schema for logs_aggregation:
- lucene
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter[] - Extra filters applied on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- logs
Aggregation LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation - Aggregations. Nested schema for logs_aggregation:
- lucene
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter] - Extra filters applied on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- logs_
aggregation LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation - Aggregations. Nested schema for logs_aggregation:
- lucene_
query LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- filters List<Property Map>
- Extra filters applied on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- logs
Aggregation Property Map - Aggregations. Nested schema for logs_aggregation:
- lucene
Query Property Map - Lucene query. Nested schema for lucene_query:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregation, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationArgs
- Average
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- Average
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count_
distinct LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average Property Map
- Calculate average value of log field. Nested schema for average:
- count Property Map
- Count the number of entries. Nested schema for count:
- count
Distinct Property Map - Count the number of distinct values of log field. Nested schema for count_distinct:
- max Property Map
- Calculate maximum value of log field. Nested schema for max:
- min Property Map
- Calculate minimum value of log field. Nested schema for min:
- percentile Property Map
- Calculate percentile value of log field. Nested schema for percentile:
- sum Property Map
- Sum values of log field. Nested schema for sum:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationAverage, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationAverageArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationAverageObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationAverageObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountDistinct, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountDistinctArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountDistinctObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationCountDistinctObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMax, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMaxArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMaxObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMaxObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMin, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMinArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMinObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationMinObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationPercentile, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationPercentileArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent double
- Value in range (0, 100].
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent float64
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent Double
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent number
- Value in range (0, 100].
- observation_
field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent float
- Value in range (0, 100].
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- percent Number
- Value in range (0, 100].
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationPercentileObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationPercentileObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationSum, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationSumArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Gauge Query Logs Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationSumObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLogsAggregationSumObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLuceneQuery, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryLogsLuceneQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsArgs
- Aggregation string
- Aggregation. When AGGREGATION_UNSPECIFIED is selected, widget uses instant query. Otherwise, it uses range query.
- Constraints: Allowable values are:
unspecified
,last
,min
,max
,avg
,sum
.
- Constraints: Allowable values are:
- Promql
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter> - Extra filters applied on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Aggregation string
- Aggregation. When AGGREGATION_UNSPECIFIED is selected, widget uses instant query. Otherwise, it uses range query.
- Constraints: Allowable values are:
unspecified
,last
,min
,max
,avg
,sum
.
- Constraints: Allowable values are:
- Promql
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter - Extra filters applied on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- aggregation String
- Aggregation. When AGGREGATION_UNSPECIFIED is selected, widget uses instant query. Otherwise, it uses range query.
- Constraints: Allowable values are:
unspecified
,last
,min
,max
,avg
,sum
.
- Constraints: Allowable values are:
- promql
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter> - Extra filters applied on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- aggregation string
- Aggregation. When AGGREGATION_UNSPECIFIED is selected, widget uses instant query. Otherwise, it uses range query.
- Constraints: Allowable values are:
unspecified
,last
,min
,max
,avg
,sum
.
- Constraints: Allowable values are:
- promql
Query LogsDashboard Layout Section Row Widget Definition Gauge Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter[] - Extra filters applied on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- aggregation str
- Aggregation. When AGGREGATION_UNSPECIFIED is selected, widget uses instant query. Otherwise, it uses range query.
- Constraints: Allowable values are:
unspecified
,last
,min
,max
,avg
,sum
.
- Constraints: Allowable values are:
- promql_
query LogsDashboard Layout Section Row Widget Definition Gauge Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter] - Extra filters applied on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- aggregation String
- Aggregation. When AGGREGATION_UNSPECIFIED is selected, widget uses instant query. Otherwise, it uses range query.
- Constraints: Allowable values are:
unspecified
,last
,min
,max
,avg
,sum
.
- Constraints: Allowable values are:
- promql
Query Property Map - PromQL query. Nested schema for promql_query:
- filters List<Property Map>
- Extra filters applied on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Gauge Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsPromqlQuery, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeQueryMetricsPromqlQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionGaugeThreshold, LogsDashboardLayoutSectionRowWidgetDefinitionGaugeThresholdArgs
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChart, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartArgs
- Color
Scheme string - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Colors
By LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By - Coloring mode. Nested schema for colors_by:
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Display
On boolBar - Whether to display values on the bars.
- Group
Name stringTemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Max
Bars doublePer Chart - Maximum number of bars to display in the chart.
- Query
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Scale
Type string - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- Sort
By string - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- Stack
Definition LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- Unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- YAxis
View LogsBy Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By - Y-axis view mode. Nested schema for y_axis_view_by:
- Color
Scheme string - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Colors
By LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By - Coloring mode. Nested schema for colors_by:
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Display
On boolBar - Whether to display values on the bars.
- Group
Name stringTemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Max
Bars float64Per Chart - Maximum number of bars to display in the chart.
- Query
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Scale
Type string - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- Sort
By string - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- Stack
Definition LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- Unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- YAxis
View LogsBy Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By - Y-axis view mode. Nested schema for y_axis_view_by:
- color
Scheme String - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- colors
By LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By - Coloring mode. Nested schema for colors_by:
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- display
On BooleanBar - Whether to display values on the bars.
- group
Name StringTemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Bars DoublePer Chart - Maximum number of bars to display in the chart.
- query
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- scale
Type String - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- sort
By String - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- stack
Definition LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- unit String
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- y
Axis LogsView By Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By - Y-axis view mode. Nested schema for y_axis_view_by:
- color
Scheme string - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- colors
By LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By - Coloring mode. Nested schema for colors_by:
- data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- display
On booleanBar - Whether to display values on the bars.
- group
Name stringTemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Bars numberPer Chart - Maximum number of bars to display in the chart.
- query
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- scale
Type string - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- sort
By string - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- stack
Definition LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- y
Axis LogsView By Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By - Y-axis view mode. Nested schema for y_axis_view_by:
- color_
scheme str - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- colors_
by LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By - Coloring mode. Nested schema for colors_by:
- data_
mode_ strtype - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- display_
on_ boolbar - Whether to display values on the bars.
- group_
name_ strtemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max_
bars_ floatper_ chart - Maximum number of bars to display in the chart.
- query
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- scale_
type str - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- sort_
by str - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- stack_
definition LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- unit str
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- y_
axis_ Logsview_ by Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By - Y-axis view mode. Nested schema for y_axis_view_by:
- color
Scheme String - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- colors
By Property Map - Coloring mode. Nested schema for colors_by:
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- display
On BooleanBar - Whether to display values on the bars.
- group
Name StringTemplate - Template for bar labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Bars NumberPer Chart - Maximum number of bars to display in the chart.
- query Property Map
- Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- scale
Type String - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- sort
By String - Sorting mode.
- Constraints: Allowable values are:
unspecified
,value
,name
.
- Constraints: Allowable values are:
- stack
Definition Property Map - Stack definition. Nested schema for stack_definition:
- unit String
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- y
Axis Property MapView By - Y-axis view mode. Nested schema for y_axis_view_by:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartColorsBy, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartColorsByArgs
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Aggregation - Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- Group
By LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Group By - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- Stack
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Stack - Each stack will have the same color across all groups. Nested schema for stack:
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Aggregation - Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- Group
By LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Group By - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- Stack
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Stack - Each stack will have the same color across all groups. Nested schema for stack:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Aggregation - Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- group
By LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Group By - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- stack
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Stack - Each stack will have the same color across all groups. Nested schema for stack:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Aggregation - Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- group
By LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Group By - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- stack
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Stack - Each stack will have the same color across all groups. Nested schema for stack:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Aggregation - Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- group_
by LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Group By - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- stack
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Colors By Stack - Each stack will have the same color across all groups. Nested schema for stack:
- aggregation Property Map
- Each aggregation will have different color and stack color will be derived from aggregation color. Nested schema for aggregation:
- group
By Property Map - Each group will have different color and stack color will be derived from group color. Nested schema for group_by:
- stack Property Map
- Each stack will have the same color across all groups. Nested schema for stack:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQuery, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryArgs
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime - Dataprime specific query. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime - Dataprime specific query. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime - Dataprime specific query. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime - Dataprime specific query. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime - Dataprime specific query. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime Property Map
- Dataprime specific query. Nested schema for dataprime:
- logs Property Map
- Logs specific query. Nested schema for logs:
- metrics Property Map
- Metrics specific query. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprime, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeArgs
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter> - Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names List<string> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter - Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names []string - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter> - Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- stacked
Group StringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter[] - Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names string[] - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime_
query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter] - Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group_
names Sequence[str] - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- stacked_
group_ strname - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime
Query Property Map - Dataprime query. Nested schema for dataprime_query:
- filters List<Property Map>
- Extra filter on top of the Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- stacked
Group StringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeDataprimeQuery, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeDataprimeQueryArgs
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilter, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterArgs
- Logs
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs Property Map
- Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics Property Map
- Filtering to be applied to query results. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogs, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogs, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsArgs
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter> - Extra filter on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names List<LogsFields Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Group Names Field> - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter - Extra filter on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names []LogsFields Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Group Names Field - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter> - Extra filter on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<LogsFields Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Group Names Field> - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- filters
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter[] - Extra filter on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names LogsFields Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Group Names Field[] - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter] - Extra filter on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group_
names_ Sequence[Logsfields Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Group Names Field] - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene_
query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- stacked_
group_ Logsname_ field Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation Property Map
- Aggregations. Nested schema for aggregation:
- filters List<Property Map>
- Extra filter on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<Property Map>Fields - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene
Query Property Map - Lucene query. Nested schema for lucene_query:
- stacked
Group Property MapName Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregation, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationArgs
- Average
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- Average
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count_
distinct LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average Property Map
- Calculate average value of log field. Nested schema for average:
- count Property Map
- Count the number of entries. Nested schema for count:
- count
Distinct Property Map - Count the number of distinct values of log field. Nested schema for count_distinct:
- max Property Map
- Calculate maximum value of log field. Nested schema for max:
- min Property Map
- Calculate minimum value of log field. Nested schema for min:
- percentile Property Map
- Calculate percentile value of log field. Nested schema for percentile:
- sum Property Map
- Sum values of log field. Nested schema for sum:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationAverage, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationAverageArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationAverageObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationAverageObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountDistinct, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountDistinctArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountDistinctObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationCountDistinctObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMax, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMaxArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMaxObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMaxObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMin, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMinArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMinObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationMinObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationPercentile, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationPercentileArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent double
- Value in range (0, 100].
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent float64
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent Double
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent number
- Value in range (0, 100].
- observation_
field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent float
- Value in range (0, 100].
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- percent Number
- Value in range (0, 100].
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationPercentileObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationPercentileObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationSum, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationSumArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationSumObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsAggregationSumObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsGroupNamesField, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsGroupNamesFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsLuceneQuery, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsLuceneQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsStackedGroupNameField, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryLogsStackedGroupNameFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsArgs
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter> - Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names List<string> - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Promql
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Stacked
Group stringName - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter - Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names []string - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Promql
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Stacked
Group stringName - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter> - Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- promql
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- stacked
Group StringName - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- filters
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter[] - Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names string[] - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- promql
Query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- stacked
Group stringName - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter] - Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group_
names Sequence[str] - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- promql_
query LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- stacked_
group_ strname - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- filters List<Property Map>
- Extra filter on top of the PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Labels to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- promql
Query Property Map - PromQL query. Nested schema for promql_query:
- stacked
Group StringName - Label to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsPromqlQuery, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartQueryMetricsPromqlQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartStackDefinition, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartStackDefinitionArgs
- Max
Slices doublePer Bar - Maximum number of slices per bar.
- Stack
Name stringTemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Max
Slices float64Per Bar - Maximum number of slices per bar.
- Stack
Name stringTemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Slices DoublePer Bar - Maximum number of slices per bar.
- stack
Name StringTemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Slices numberPer Bar - Maximum number of slices per bar.
- stack
Name stringTemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max_
slices_ floatper_ bar - Maximum number of slices per bar.
- stack_
name_ strtemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Slices NumberPer Bar - Maximum number of slices per bar.
- stack
Name StringTemplate - Template for stack slice label.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartYAxisViewBy, LogsDashboardLayoutSectionRowWidgetDefinitionHorizontalBarChartYAxisViewByArgs
- Category
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By Category - View by category. Nested schema for category:
- Value
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By Value - View by value. Nested schema for value:
- Category
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By Category - View by category. Nested schema for category:
- Value
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By Value - View by value. Nested schema for value:
- category
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By Category - View by category. Nested schema for category:
- value
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By Value - View by value. Nested schema for value:
- category
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By Category - View by category. Nested schema for category:
- value
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By Value - View by value. Nested schema for value:
- category
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By Category - View by category. Nested schema for category:
- value
Logs
Dashboard Layout Section Row Widget Definition Horizontal Bar Chart YAxis View By Value - View by value. Nested schema for value:
- category Property Map
- View by category. Nested schema for category:
- value Property Map
- View by value. Nested schema for value:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChart, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartArgs
- Legend
Logs
Dashboard Layout Section Row Widget Definition Line Chart Legend - Legend configuration. Nested schema for legend:
- Tooltip
Logs
Dashboard Layout Section Row Widget Definition Line Chart Tooltip - Tooltip configuration. Nested schema for tooltip:
- Query
Definitions List<LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition> - Query definitions.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for query_definitions:
- Constraints: The maximum length is
- Stacked
Line string - Stacked lines.
- Constraints: Allowable values are:
unspecified
,absolute
,relative
.
- Constraints: Allowable values are:
- Legend
Logs
Dashboard Layout Section Row Widget Definition Line Chart Legend - Legend configuration. Nested schema for legend:
- Tooltip
Logs
Dashboard Layout Section Row Widget Definition Line Chart Tooltip - Tooltip configuration. Nested schema for tooltip:
- Query
Definitions []LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition - Query definitions.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for query_definitions:
- Constraints: The maximum length is
- Stacked
Line string - Stacked lines.
- Constraints: Allowable values are:
unspecified
,absolute
,relative
.
- Constraints: Allowable values are:
- legend
Logs
Dashboard Layout Section Row Widget Definition Line Chart Legend - Legend configuration. Nested schema for legend:
- tooltip
Logs
Dashboard Layout Section Row Widget Definition Line Chart Tooltip - Tooltip configuration. Nested schema for tooltip:
- query
Definitions List<LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition> - Query definitions.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for query_definitions:
- Constraints: The maximum length is
- stacked
Line String - Stacked lines.
- Constraints: Allowable values are:
unspecified
,absolute
,relative
.
- Constraints: Allowable values are:
- legend
Logs
Dashboard Layout Section Row Widget Definition Line Chart Legend - Legend configuration. Nested schema for legend:
- tooltip
Logs
Dashboard Layout Section Row Widget Definition Line Chart Tooltip - Tooltip configuration. Nested schema for tooltip:
- query
Definitions LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition[] - Query definitions.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for query_definitions:
- Constraints: The maximum length is
- stacked
Line string - Stacked lines.
- Constraints: Allowable values are:
unspecified
,absolute
,relative
.
- Constraints: Allowable values are:
- legend
Logs
Dashboard Layout Section Row Widget Definition Line Chart Legend - Legend configuration. Nested schema for legend:
- tooltip
Logs
Dashboard Layout Section Row Widget Definition Line Chart Tooltip - Tooltip configuration. Nested schema for tooltip:
- query_
definitions Sequence[LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition] - Query definitions.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for query_definitions:
- Constraints: The maximum length is
- stacked_
line str - Stacked lines.
- Constraints: Allowable values are:
unspecified
,absolute
,relative
.
- Constraints: Allowable values are:
- legend Property Map
- Legend configuration. Nested schema for legend:
- tooltip Property Map
- Tooltip configuration. Nested schema for tooltip:
- query
Definitions List<Property Map> - Query definitions.
- Constraints: The maximum length is
4096
items. The minimum length is1
item. Nested schema for query_definitions:
- Constraints: The maximum length is
- stacked
Line String - Stacked lines.
- Constraints: Allowable values are:
unspecified
,absolute
,relative
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartLegend, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartLegendArgs
- Group
By boolQuery - Whether to group by the query or not.
- Is
Visible bool - Whether to show the legend or not.
- Columns List<string>
- The columns to show in the legend.
- Constraints: Allowable list items are:
unspecified
,min
,max
,sum
,avg
,last
,name
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- Group
By boolQuery - Whether to group by the query or not.
- Is
Visible bool - Whether to show the legend or not.
- Columns []string
- The columns to show in the legend.
- Constraints: Allowable list items are:
unspecified
,min
,max
,sum
,avg
,last
,name
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- group
By BooleanQuery - Whether to group by the query or not.
- is
Visible Boolean - Whether to show the legend or not.
- columns List<String>
- The columns to show in the legend.
- Constraints: Allowable list items are:
unspecified
,min
,max
,sum
,avg
,last
,name
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- group
By booleanQuery - Whether to group by the query or not.
- is
Visible boolean - Whether to show the legend or not.
- columns string[]
- The columns to show in the legend.
- Constraints: Allowable list items are:
unspecified
,min
,max
,sum
,avg
,last
,name
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- group_
by_ boolquery - Whether to group by the query or not.
- is_
visible bool - Whether to show the legend or not.
- columns Sequence[str]
- The columns to show in the legend.
- Constraints: Allowable list items are:
unspecified
,min
,max
,sum
,avg
,last
,name
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- group
By BooleanQuery - Whether to group by the query or not.
- is
Visible Boolean - Whether to show the legend or not.
- columns List<String>
- The columns to show in the legend.
- Constraints: Allowable list items are:
unspecified
,min
,max
,sum
,avg
,last
,name
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinition, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionArgs
- Id string
- Unique identifier of the query within the widget.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- Is
Visible bool - Whether data for this query should be visible on the chart.
- Query
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Resolution
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Resolution - Resolution of the data. Nested schema for resolution:
- Color
Scheme string - Color scheme for the series.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Name string
- Query name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Scale
Type string - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- Series
Count stringLimit - Maximum number of series to display.
- Constraints: The maximum length is
19
characters. The minimum length is1
character. The value must match regular expression/^-?\\d{1,19}$/
.
- Constraints: The maximum length is
- Series
Name stringTemplate - Template for series name in legend and tooltip.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- Id string
- Unique identifier of the query within the widget.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- Is
Visible bool - Whether data for this query should be visible on the chart.
- Query
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Resolution
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Resolution - Resolution of the data. Nested schema for resolution:
- Color
Scheme string - Color scheme for the series.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Name string
- Query name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Scale
Type string - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- Series
Count stringLimit - Maximum number of series to display.
- Constraints: The maximum length is
19
characters. The minimum length is1
character. The value must match regular expression/^-?\\d{1,19}$/
.
- Constraints: The maximum length is
- Series
Name stringTemplate - Template for series name in legend and tooltip.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- id String
- Unique identifier of the query within the widget.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- is
Visible Boolean - Whether data for this query should be visible on the chart.
- query
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- resolution
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Resolution - Resolution of the data. Nested schema for resolution:
- color
Scheme String - Color scheme for the series.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- name String
- Query name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- scale
Type String - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- series
Count StringLimit - Maximum number of series to display.
- Constraints: The maximum length is
19
characters. The minimum length is1
character. The value must match regular expression/^-?\\d{1,19}$/
.
- Constraints: The maximum length is
- series
Name StringTemplate - Template for series name in legend and tooltip.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- unit String
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- id string
- Unique identifier of the query within the widget.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- is
Visible boolean - Whether data for this query should be visible on the chart.
- query
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- resolution
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Resolution - Resolution of the data. Nested schema for resolution:
- color
Scheme string - Color scheme for the series.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- name string
- Query name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- scale
Type string - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- series
Count stringLimit - Maximum number of series to display.
- Constraints: The maximum length is
19
characters. The minimum length is1
character. The value must match regular expression/^-?\\d{1,19}$/
.
- Constraints: The maximum length is
- series
Name stringTemplate - Template for series name in legend and tooltip.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- id str
- Unique identifier of the query within the widget.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- is_
visible bool - Whether data for this query should be visible on the chart.
- query
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- resolution
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Resolution - Resolution of the data. Nested schema for resolution:
- color_
scheme str - Color scheme for the series.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- data_
mode_ strtype - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- name str
- Query name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- scale_
type str - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- series_
count_ strlimit - Maximum number of series to display.
- Constraints: The maximum length is
19
characters. The minimum length is1
character. The value must match regular expression/^-?\\d{1,19}$/
.
- Constraints: The maximum length is
- series_
name_ strtemplate - Template for series name in legend and tooltip.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- unit str
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- id String
- Unique identifier of the query within the widget.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- is
Visible Boolean - Whether data for this query should be visible on the chart.
- query Property Map
- Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- resolution Property Map
- Resolution of the data. Nested schema for resolution:
- color
Scheme String - Color scheme for the series.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- name String
- Query name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- scale
Type String - Scale type.
- Constraints: Allowable values are:
unspecified
,linear
,logarithmic
.
- Constraints: Allowable values are:
- series
Count StringLimit - Maximum number of series to display.
- Constraints: The maximum length is
19
characters. The minimum length is1
character. The value must match regular expression/^-?\\d{1,19}$/
.
- Constraints: The maximum length is
- series
Name StringTemplate - Template for series name in legend and tooltip.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- unit String
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQuery, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryArgs
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime - Dataprime language based query. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics - Metrics specific query. Nested schema for metrics:
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime - Dataprime language based query. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime - Dataprime language based query. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime - Dataprime language based query. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime - Dataprime language based query. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime Property Map
- Dataprime language based query. Nested schema for dataprime:
- logs Property Map
- Logs specific query. Nested schema for logs:
- metrics Property Map
- Metrics specific query. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprime, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeArgs
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter> - Filters to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter - Filters to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter> - Filters to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter[] - Filters to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime_
query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter] - Filters to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- dataprime
Query Property Map - Dataprime query. Nested schema for dataprime_query:
- filters List<Property Map>
- Filters to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeDataprimeQuery, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeDataprimeQueryArgs
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilter, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterArgs
- Logs
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs Property Map
- Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics Property Map
- Filtering to be applied to query results. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogs, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogs, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsArgs
- Aggregations
List<Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation> - Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter> - Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Bies List<string> - Group by fields (deprecated).
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Group
Bys List<LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Group By> - Group by fields.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Aggregations
[]Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation - Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter - Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Bies []string - Group by fields (deprecated).
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Group
Bys []LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Group By - Group by fields.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- aggregations
List<Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation> - Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter> - Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Bies List<String> - Group by fields (deprecated).
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- group
Bys List<LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Group By> - Group by fields.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- lucene
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- aggregations
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation[] - Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- filters
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter[] - Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Bies string[] - Group by fields (deprecated).
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- group
Bys LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Group By[] - Group by fields.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- lucene
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- aggregations
Sequence[Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation] - Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter] - Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group_
bies Sequence[str] - Group by fields (deprecated).
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- group_
bys Sequence[LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Group By] - Group by fields.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- lucene_
query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- aggregations List<Property Map>
- Aggregations.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for aggregations:
- Constraints: The maximum length is
- filters List<Property Map>
- Extra filtering on top of the Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Bies List<String> - Group by fields (deprecated).
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- group
Bys List<Property Map> - Group by fields.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for group_bys:
- Constraints: The maximum length is
- lucene
Query Property Map - Lucene query. Nested schema for lucene_query:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregation, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationArgs
- Average
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- Average
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count_
distinct LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average Property Map
- Calculate average value of log field. Nested schema for average:
- count Property Map
- Count the number of entries. Nested schema for count:
- count
Distinct Property Map - Count the number of distinct values of log field. Nested schema for count_distinct:
- max Property Map
- Calculate maximum value of log field. Nested schema for max:
- min Property Map
- Calculate minimum value of log field. Nested schema for min:
- percentile Property Map
- Calculate percentile value of log field. Nested schema for percentile:
- sum Property Map
- Sum values of log field. Nested schema for sum:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationAverage, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationAverageArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationAverageObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationAverageObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountDistinct, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountDistinctArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountDistinctObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationCountDistinctObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMax, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMaxArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMaxObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMaxObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMin, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationMinObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationPercentile, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationPercentileArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent double
- Value in range (0, 100].
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent float64
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent Double
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent number
- Value in range (0, 100].
- observation_
field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent float
- Value in range (0, 100].
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- percent Number
- Value in range (0, 100].
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationPercentileObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationPercentileObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationSum, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationSumArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationSumObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsAggregationSumObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsGroupBy, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsGroupByArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsLuceneQuery, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryLogsLuceneQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsArgs
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter> - Filtering to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Promql
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter - Filtering to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Promql
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter> - Filtering to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- promql
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter[] - Filtering to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- promql
Query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter] - Filtering to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- promql_
query LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters List<Property Map>
- Filtering to be applied to query results.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- promql
Query Property Map - PromQL query. Nested schema for promql_query:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Line Chart Query Definition Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsPromqlQuery, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionQueryMetricsPromqlQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionResolution, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartQueryDefinitionResolutionArgs
- Buckets
Presented double - Maximum number of data points to fetch.
- Interval string
- Interval between data points.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- Buckets
Presented float64 - Maximum number of data points to fetch.
- Interval string
- Interval between data points.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- buckets
Presented Double - Maximum number of data points to fetch.
- interval String
- Interval between data points.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- buckets
Presented number - Maximum number of data points to fetch.
- interval string
- Interval between data points.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- buckets_
presented float - Maximum number of data points to fetch.
- interval str
- Interval between data points.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
- buckets
Presented Number - Maximum number of data points to fetch.
- interval String
- Interval between data points.
- Constraints: The maximum length is
10
characters. The minimum length is2
characters. The value must match regular expression/^[0-9]+[smhdw]?$/
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionLineChartTooltip, LogsDashboardLayoutSectionRowWidgetDefinitionLineChartTooltipArgs
- Show
Labels bool - Whether to show labels in the tooltip.
- Type string
- Tooltip type.
- Constraints: Allowable values are:
unspecified
,all
,single
.
- Constraints: Allowable values are:
- Show
Labels bool - Whether to show labels in the tooltip.
- Type string
- Tooltip type.
- Constraints: Allowable values are:
unspecified
,all
,single
.
- Constraints: Allowable values are:
- show
Labels Boolean - Whether to show labels in the tooltip.
- type String
- Tooltip type.
- Constraints: Allowable values are:
unspecified
,all
,single
.
- Constraints: Allowable values are:
- show
Labels boolean - Whether to show labels in the tooltip.
- type string
- Tooltip type.
- Constraints: Allowable values are:
unspecified
,all
,single
.
- Constraints: Allowable values are:
- show_
labels bool - Whether to show labels in the tooltip.
- type str
- Tooltip type.
- Constraints: Allowable values are:
unspecified
,all
,single
.
- Constraints: Allowable values are:
- show
Labels Boolean - Whether to show labels in the tooltip.
- type String
- Tooltip type.
- Constraints: Allowable values are:
unspecified
,all
,single
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionMarkdown, LogsDashboardLayoutSectionRowWidgetDefinitionMarkdownArgs
- Markdown
Text string - Markdown text to render.
- Constraints: The maximum length is
10000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Tooltip
Text string - Tooltip text on hover.
- Constraints: The maximum length is
1000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Markdown
Text string - Markdown text to render.
- Constraints: The maximum length is
10000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Tooltip
Text string - Tooltip text on hover.
- Constraints: The maximum length is
1000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- markdown
Text String - Markdown text to render.
- Constraints: The maximum length is
10000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- tooltip
Text String - Tooltip text on hover.
- Constraints: The maximum length is
1000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- markdown
Text string - Markdown text to render.
- Constraints: The maximum length is
10000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- tooltip
Text string - Tooltip text on hover.
- Constraints: The maximum length is
1000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- markdown_
text str - Markdown text to render.
- Constraints: The maximum length is
10000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- tooltip_
text str - Tooltip text on hover.
- Constraints: The maximum length is
1000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- markdown
Text String - Markdown text to render.
- Constraints: The maximum length is
10000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- tooltip
Text String - Tooltip text on hover.
- Constraints: The maximum length is
1000
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionPieChart, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartArgs
- Color
Scheme string - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Label
Definition LogsDashboard Layout Section Row Widget Definition Pie Chart Label Definition - Label settings. Nested schema for label_definition:
- Max
Slices doublePer Chart - Maximum number of slices to display in the chart.
- Min
Slice doublePercentage - Minimum percentage of a slice to be displayed.
- Query
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Show
Legend bool - Controls whether to show the legend.
- Stack
Definition LogsDashboard Layout Section Row Widget Definition Pie Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Group
Name stringTemplate - Template for group labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- Color
Scheme string - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Label
Definition LogsDashboard Layout Section Row Widget Definition Pie Chart Label Definition - Label settings. Nested schema for label_definition:
- Max
Slices float64Per Chart - Maximum number of slices to display in the chart.
- Min
Slice float64Percentage - Minimum percentage of a slice to be displayed.
- Query
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- Show
Legend bool - Controls whether to show the legend.
- Stack
Definition LogsDashboard Layout Section Row Widget Definition Pie Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- Data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- Group
Name stringTemplate - Template for group labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- color
Scheme String - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- label
Definition LogsDashboard Layout Section Row Widget Definition Pie Chart Label Definition - Label settings. Nested schema for label_definition:
- max
Slices DoublePer Chart - Maximum number of slices to display in the chart.
- min
Slice DoublePercentage - Minimum percentage of a slice to be displayed.
- query
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- show
Legend Boolean - Controls whether to show the legend.
- stack
Definition LogsDashboard Layout Section Row Widget Definition Pie Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- group
Name StringTemplate - Template for group labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- unit String
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- color
Scheme string - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- label
Definition LogsDashboard Layout Section Row Widget Definition Pie Chart Label Definition - Label settings. Nested schema for label_definition:
- max
Slices numberPer Chart - Maximum number of slices to display in the chart.
- min
Slice numberPercentage - Minimum percentage of a slice to be displayed.
- query
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- show
Legend boolean - Controls whether to show the legend.
- stack
Definition LogsDashboard Layout Section Row Widget Definition Pie Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- data
Mode stringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- group
Name stringTemplate - Template for group labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- unit string
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- color_
scheme str - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- label_
definition LogsDashboard Layout Section Row Widget Definition Pie Chart Label Definition - Label settings. Nested schema for label_definition:
- max_
slices_ floatper_ chart - Maximum number of slices to display in the chart.
- min_
slice_ floatpercentage - Minimum percentage of a slice to be displayed.
- query
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query - Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- show_
legend bool - Controls whether to show the legend.
- stack_
definition LogsDashboard Layout Section Row Widget Definition Pie Chart Stack Definition - Stack definition. Nested schema for stack_definition:
- data_
mode_ strtype - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- group_
name_ strtemplate - Template for group labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- unit str
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
- color
Scheme String - Color scheme name.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- label
Definition Property Map - Label settings. Nested schema for label_definition:
- max
Slices NumberPer Chart - Maximum number of slices to display in the chart.
- min
Slice NumberPercentage - Minimum percentage of a slice to be displayed.
- query Property Map
- Data source specific query, defines from where and how to fetch the data. Nested schema for query:
- show
Legend Boolean - Controls whether to show the legend.
- stack
Definition Property Map - Stack definition. Nested schema for stack_definition:
- data
Mode StringType - Data mode type.
- Constraints: Allowable values are:
high_unspecified
,archive
.
- Constraints: Allowable values are:
- group
Name StringTemplate - Template for group labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- unit String
- Unit of the data.
- Constraints: Allowable values are:
unspecified
,microseconds
,milliseconds
,seconds
,bytes
,kbytes
,mbytes
,gbytes
,bytes_iec
,kibytes
,mibytes
,gibytes
,eur_cents
,eur
,usd_cents
,usd
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartLabelDefinition, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartLabelDefinitionArgs
- Is
Visible bool - Controls whether to show the label.
- Label
Source string - Source of the label.
- Constraints: Allowable values are:
unspecified
,inner
,stack
.
- Constraints: Allowable values are:
- Show
Name bool - Controls whether to show the name.
- Show
Percentage bool - Controls whether to show the percentage.
- Show
Value bool - Controls whether to show the value.
- Is
Visible bool - Controls whether to show the label.
- Label
Source string - Source of the label.
- Constraints: Allowable values are:
unspecified
,inner
,stack
.
- Constraints: Allowable values are:
- Show
Name bool - Controls whether to show the name.
- Show
Percentage bool - Controls whether to show the percentage.
- Show
Value bool - Controls whether to show the value.
- is
Visible Boolean - Controls whether to show the label.
- label
Source String - Source of the label.
- Constraints: Allowable values are:
unspecified
,inner
,stack
.
- Constraints: Allowable values are:
- show
Name Boolean - Controls whether to show the name.
- show
Percentage Boolean - Controls whether to show the percentage.
- show
Value Boolean - Controls whether to show the value.
- is
Visible boolean - Controls whether to show the label.
- label
Source string - Source of the label.
- Constraints: Allowable values are:
unspecified
,inner
,stack
.
- Constraints: Allowable values are:
- show
Name boolean - Controls whether to show the name.
- show
Percentage boolean - Controls whether to show the percentage.
- show
Value boolean - Controls whether to show the value.
- is_
visible bool - Controls whether to show the label.
- label_
source str - Source of the label.
- Constraints: Allowable values are:
unspecified
,inner
,stack
.
- Constraints: Allowable values are:
- show_
name bool - Controls whether to show the name.
- show_
percentage bool - Controls whether to show the percentage.
- show_
value bool - Controls whether to show the value.
- is
Visible Boolean - Controls whether to show the label.
- label
Source String - Source of the label.
- Constraints: Allowable values are:
unspecified
,inner
,stack
.
- Constraints: Allowable values are:
- show
Name Boolean - Controls whether to show the name.
- show
Percentage Boolean - Controls whether to show the percentage.
- show
Value Boolean - Controls whether to show the value.
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQuery, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryArgs
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- Dataprime
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs - Logs specific query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime - Query based on Dataprime language. Nested schema for dataprime:
- logs
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs - Logs specific query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics - Metrics specific query. Nested schema for metrics:
- dataprime Property Map
- Query based on Dataprime language. Nested schema for dataprime:
- logs Property Map
- Logs specific query. Nested schema for logs:
- metrics Property Map
- Metrics specific query. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprime, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeArgs
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter> - Extra filters on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names List<string> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Dataprime
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter - Extra filters on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names []string - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter> - Extra filters on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked
Group StringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter[] - Extra filters on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names string[] - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime_
query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Dataprime Query - Dataprime query. Nested schema for dataprime_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter] - Extra filters on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group_
names Sequence[str] - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked_
group_ strname - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- dataprime
Query Property Map - Dataprime query. Nested schema for dataprime_query:
- filters List<Property Map>
- Extra filters on top of Dataprime query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked
Group StringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeDataprimeQuery, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeDataprimeQueryArgs
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- text String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilter, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterArgs
- Logs
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- Logs
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- Metrics
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs - Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics - Filtering to be applied to query results. Nested schema for metrics:
- logs Property Map
- Extra filtering on top of the Lucene query. Nested schema for logs:
- metrics Property Map
- Filtering to be applied to query results. Nested schema for metrics:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogs, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Logs Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterLogsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperator, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Dataprime Filter Metrics Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryDataprimeFilterMetricsOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogs, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsArgs
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter> - Extra filters on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names List<LogsFields Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Group Names Field> - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- Aggregation
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter - Extra filters on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names []LogsFields Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Group Names Field - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- Lucene
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- Stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter> - Extra filters on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<LogsFields Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Group Names Field> - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- filters
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter[] - Extra filters on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names LogsFields Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Group Names Field[] - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- stacked
Group LogsName Field Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation - Aggregations. Nested schema for aggregation:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter] - Extra filters on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group_
names_ Sequence[Logsfields Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Group Names Field] - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene_
query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Lucene Query - Lucene query. Nested schema for lucene_query:
- stacked_
group_ Logsname_ field Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Stacked Group Name Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
- aggregation Property Map
- Aggregations. Nested schema for aggregation:
- filters List<Property Map>
- Extra filters on top of Lucene query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<Property Map>Fields - Fields to group by.
- Constraints: The maximum length is
2
items. The minimum length is1
item. Nested schema for group_names_fields:
- Constraints: The maximum length is
- lucene
Query Property Map - Lucene query. Nested schema for lucene_query:
- stacked
Group Property MapName Field - Field to count distinct values of. Nested schema for stacked_group_name_field:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregation, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationArgs
- Average
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- Average
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- Count
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- Count
Distinct LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- Max
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- Min
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- Percentile
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- Sum
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count
Distinct LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Average - Calculate average value of log field. Nested schema for average:
- count
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count - Count the number of entries. Nested schema for count:
- count_
distinct LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count Distinct - Count the number of distinct values of log field. Nested schema for count_distinct:
- max
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Max - Calculate maximum value of log field. Nested schema for max:
- min
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Min - Calculate minimum value of log field. Nested schema for min:
- percentile
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Percentile - Calculate percentile value of log field. Nested schema for percentile:
- sum
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Sum - Sum values of log field. Nested schema for sum:
- average Property Map
- Calculate average value of log field. Nested schema for average:
- count Property Map
- Count the number of entries. Nested schema for count:
- count
Distinct Property Map - Count the number of distinct values of log field. Nested schema for count_distinct:
- max Property Map
- Calculate maximum value of log field. Nested schema for max:
- min Property Map
- Calculate minimum value of log field. Nested schema for min:
- percentile Property Map
- Calculate percentile value of log field. Nested schema for percentile:
- sum Property Map
- Sum values of log field. Nested schema for sum:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationAverage, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationAverageArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Average Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationAverageObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationAverageObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountDistinct, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountDistinctArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Count Distinct Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountDistinctObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationCountDistinctObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMax, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMaxArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Max Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMaxObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMaxObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMin, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMinArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Min Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMinObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationMinObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationPercentile, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationPercentileArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent double
- Value in range (0, 100].
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Percent float64
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent Double
- Value in range (0, 100].
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent number
- Value in range (0, 100].
- observation_
field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Percentile Observation Field - Field to count distinct values of. Nested schema for observation_field:
- percent float
- Value in range (0, 100].
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- percent Number
- Value in range (0, 100].
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationPercentileObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationPercentileObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationSum, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationSumArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Aggregation Sum Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationSumObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsAggregationSumObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterArgs
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation_
field LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Observation Field - Field to count distinct values of. Nested schema for observation_field:
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterObservationField, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Logs Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsGroupNamesField, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsGroupNamesFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsLuceneQuery, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsLuceneQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsStackedGroupNameField, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryLogsStackedGroupNameFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetrics, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsArgs
- Promql
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Filters
List<Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter> - Extra filters on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names List<string> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Promql
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- Filters
[]Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter - Extra filters on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- Group
Names []string - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- promql
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
List<Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter> - Extra filters on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked
Group StringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- promql
Query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter[] - Extra filters on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names string[] - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked
Group stringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- promql_
query LogsDashboard Layout Section Row Widget Definition Pie Chart Query Metrics Promql Query - PromQL query. Nested schema for promql_query:
- filters
Sequence[Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter] - Extra filters on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group_
names Sequence[str] - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked_
group_ strname - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- promql
Query Property Map - PromQL query. Nested schema for promql_query:
- filters List<Property Map>
- Extra filters on top of PromQL query.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for filters:
- Constraints: The maximum length is
- group
Names List<String> - Fields to group by.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is2
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- stacked
Group StringName - Field to stack by.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilter, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterArgs
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- Label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label string
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label str
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator - Operator to use for filtering the logs. Nested schema for operator:
- label String
- Label associated with the metric.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- operator Property Map
- Operator to use for filtering the logs. Nested schema for operator:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperator, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorArgs
- Equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- Equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- Not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals_
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not
Equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals - Equality comparison. Nested schema for equals:
- not_
equals LogsDashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals - Non-equality comparison. Nested schema for not_equals:
- equals Property Map
- Equality comparison. Nested schema for equals:
- not
Equals Property Map - Non-equality comparison. Nested schema for not_equals:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEquals, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection - Selection criteria for the equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelectionArgs
- All
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- All
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection All - Represents a selection of all values. Nested schema for all:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- all Property Map
- Represents a selection of all values. Nested schema for all:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEquals, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsArgs
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- Selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals Selection - Selection criteria for the non-equality comparison. Nested schema for selection:
- selection Property Map
- Selection criteria for the non-equality comparison. Nested schema for selection:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsSelection, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsSelectionArgs
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- List
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list
Logs
Dashboard Layout Section Row Widget Definition Pie Chart Query Metrics Filter Operator Not Equals Selection List - Represents a selection from a list of values. Nested schema for list:
- list Property Map
- Represents a selection from a list of values. Nested schema for list:
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsSelectionList, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsFilterOperatorNotEqualsSelectionListArgs
- Values List<string>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- List of values for the selection.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsPromqlQuery, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartQueryMetricsPromqlQueryArgs
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value string
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value str
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- value String
- The query string.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetDefinitionPieChartStackDefinition, LogsDashboardLayoutSectionRowWidgetDefinitionPieChartStackDefinitionArgs
- Max
Slices doublePer Stack - Maximum number of slices per stack.
- Stack
Name stringTemplate - Template for stack labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Max
Slices float64Per Stack - Maximum number of slices per stack.
- Stack
Name stringTemplate - Template for stack labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Slices DoublePer Stack - Maximum number of slices per stack.
- stack
Name StringTemplate - Template for stack labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Slices numberPer Stack - Maximum number of slices per stack.
- stack
Name stringTemplate - Template for stack labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max_
slices_ floatper_ stack - Maximum number of slices per stack.
- stack_
name_ strtemplate - Template for stack labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- max
Slices NumberPer Stack - Maximum number of slices per stack.
- stack
Name StringTemplate - Template for stack labels.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardLayoutSectionRowWidgetId, LogsDashboardLayoutSectionRowWidgetIdArgs
- Value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- Value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value String
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value string
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value str
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
- value String
- The UUID value.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/
.
- Constraints: The maximum length is
LogsDashboardVariable, LogsDashboardVariableArgs
- Definition
Logs
Dashboard Variable Definition - Definition. Nested schema for definition:
- Display
Name string - Name used in variable UI.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Name string
- Name of the variable which can be used in templates.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Definition
Logs
Dashboard Variable Definition - Definition. Nested schema for definition:
- Display
Name string - Name used in variable UI.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Name string
- Name of the variable which can be used in templates.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- definition
Logs
Dashboard Variable Definition - Definition. Nested schema for definition:
- display
Name String - Name used in variable UI.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- name String
- Name of the variable which can be used in templates.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- definition
Logs
Dashboard Variable Definition - Definition. Nested schema for definition:
- display
Name string - Name used in variable UI.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- name string
- Name of the variable which can be used in templates.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- definition
Logs
Dashboard Variable Definition - Definition. Nested schema for definition:
- display_
name str - Name used in variable UI.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- name str
- Name of the variable which can be used in templates.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- definition Property Map
- Definition. Nested schema for definition:
- display
Name String - Name used in variable UI.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- name String
- Name of the variable which can be used in templates.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
LogsDashboardVariableDefinition, LogsDashboardVariableDefinitionArgs
- Multi
Select LogsDashboard Variable Definition Multi Select - Multi-select value. Nested schema for multi_select:
- Multi
Select LogsDashboard Variable Definition Multi Select - Multi-select value. Nested schema for multi_select:
- multi
Select LogsDashboard Variable Definition Multi Select - Multi-select value. Nested schema for multi_select:
- multi
Select LogsDashboard Variable Definition Multi Select - Multi-select value. Nested schema for multi_select:
- multi_
select LogsDashboard Variable Definition Multi Select - Multi-select value. Nested schema for multi_select:
- multi
Select Property Map - Multi-select value. Nested schema for multi_select:
LogsDashboardVariableDefinitionMultiSelect, LogsDashboardVariableDefinitionMultiSelectArgs
- Selection
Logs
Dashboard Variable Definition Multi Select Selection - State of what is currently selected. Nested schema for selection:
- Source
Logs
Dashboard Variable Definition Multi Select Source - Variable value source. Nested schema for source:
- Values
Order stringDirection - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
- Selection
Logs
Dashboard Variable Definition Multi Select Selection - State of what is currently selected. Nested schema for selection:
- Source
Logs
Dashboard Variable Definition Multi Select Source - Variable value source. Nested schema for source:
- Values
Order stringDirection - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
- selection
Logs
Dashboard Variable Definition Multi Select Selection - State of what is currently selected. Nested schema for selection:
- source
Logs
Dashboard Variable Definition Multi Select Source - Variable value source. Nested schema for source:
- values
Order StringDirection - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
- selection
Logs
Dashboard Variable Definition Multi Select Selection - State of what is currently selected. Nested schema for selection:
- source
Logs
Dashboard Variable Definition Multi Select Source - Variable value source. Nested schema for source:
- values
Order stringDirection - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
- selection
Logs
Dashboard Variable Definition Multi Select Selection - State of what is currently selected. Nested schema for selection:
- source
Logs
Dashboard Variable Definition Multi Select Source - Variable value source. Nested schema for source:
- values_
order_ strdirection - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
- selection Property Map
- State of what is currently selected. Nested schema for selection:
- source Property Map
- Variable value source. Nested schema for source:
- values
Order StringDirection - The direction of the order: ascending or descending.
- Constraints: Allowable values are:
unspecified
,asc
,desc
.
- Constraints: Allowable values are:
LogsDashboardVariableDefinitionMultiSelectSelection, LogsDashboardVariableDefinitionMultiSelectSelectionArgs
- All
Logs
Dashboard Variable Definition Multi Select Selection All - All values are selected, usually translated to wildcard (*). Nested schema for all:
- List
Logs
Dashboard Variable Definition Multi Select Selection List - Specific values are selected. Nested schema for list:
- All
Logs
Dashboard Variable Definition Multi Select Selection All - All values are selected, usually translated to wildcard (*). Nested schema for all:
- List
Logs
Dashboard Variable Definition Multi Select Selection List - Specific values are selected. Nested schema for list:
- all
Logs
Dashboard Variable Definition Multi Select Selection All - All values are selected, usually translated to wildcard (*). Nested schema for all:
- list
Logs
Dashboard Variable Definition Multi Select Selection List - Specific values are selected. Nested schema for list:
- all
Logs
Dashboard Variable Definition Multi Select Selection All - All values are selected, usually translated to wildcard (*). Nested schema for all:
- list
Logs
Dashboard Variable Definition Multi Select Selection List - Specific values are selected. Nested schema for list:
- all
Logs
Dashboard Variable Definition Multi Select Selection All - All values are selected, usually translated to wildcard (*). Nested schema for all:
- list
Logs
Dashboard Variable Definition Multi Select Selection List - Specific values are selected. Nested schema for list:
- all Property Map
- All values are selected, usually translated to wildcard (*). Nested schema for all:
- list Property Map
- Specific values are selected. Nested schema for list:
LogsDashboardVariableDefinitionMultiSelectSelectionList, LogsDashboardVariableDefinitionMultiSelectSelectionListArgs
- Values List<string>
- Selected values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Values []string
- Selected values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- Selected values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values string[]
- Selected values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values Sequence[str]
- Selected values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- values List<String>
- Selected values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsDashboardVariableDefinitionMultiSelectSource, LogsDashboardVariableDefinitionMultiSelectSourceArgs
- Constant
List LogsDashboard Variable Definition Multi Select Source Constant List - List of constant values. Nested schema for constant_list:
- Logs
Path LogsDashboard Variable Definition Multi Select Source Logs Path - Unique values for a given logs path. Nested schema for logs_path:
- Metric
Label LogsDashboard Variable Definition Multi Select Source Metric Label - Unique values for a given metric label. Nested schema for metric_label:
- Constant
List LogsDashboard Variable Definition Multi Select Source Constant List - List of constant values. Nested schema for constant_list:
- Logs
Path LogsDashboard Variable Definition Multi Select Source Logs Path - Unique values for a given logs path. Nested schema for logs_path:
- Metric
Label LogsDashboard Variable Definition Multi Select Source Metric Label - Unique values for a given metric label. Nested schema for metric_label:
- constant
List LogsDashboard Variable Definition Multi Select Source Constant List - List of constant values. Nested schema for constant_list:
- logs
Path LogsDashboard Variable Definition Multi Select Source Logs Path - Unique values for a given logs path. Nested schema for logs_path:
- metric
Label LogsDashboard Variable Definition Multi Select Source Metric Label - Unique values for a given metric label. Nested schema for metric_label:
- constant
List LogsDashboard Variable Definition Multi Select Source Constant List - List of constant values. Nested schema for constant_list:
- logs
Path LogsDashboard Variable Definition Multi Select Source Logs Path - Unique values for a given logs path. Nested schema for logs_path:
- metric
Label LogsDashboard Variable Definition Multi Select Source Metric Label - Unique values for a given metric label. Nested schema for metric_label:
- constant_
list LogsDashboard Variable Definition Multi Select Source Constant List - List of constant values. Nested schema for constant_list:
- logs_
path LogsDashboard Variable Definition Multi Select Source Logs Path - Unique values for a given logs path. Nested schema for logs_path:
- metric_
label LogsDashboard Variable Definition Multi Select Source Metric Label - Unique values for a given metric label. Nested schema for metric_label:
- constant
List Property Map - List of constant values. Nested schema for constant_list:
- logs
Path Property Map - Unique values for a given logs path. Nested schema for logs_path:
- metric
Label Property Map - Unique values for a given metric label. Nested schema for metric_label:
LogsDashboardVariableDefinitionMultiSelectSourceConstantList, LogsDashboardVariableDefinitionMultiSelectSourceConstantListArgs
- Values List<string>
- List of constant values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Values []string
- List of constant values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- values List<String>
- List of constant values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- values string[]
- List of constant values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- values Sequence[str]
- List of constant values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- values List<String>
- List of constant values.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
LogsDashboardVariableDefinitionMultiSelectSourceLogsPath, LogsDashboardVariableDefinitionMultiSelectSourceLogsPathArgs
- Observation
Field LogsDashboard Variable Definition Multi Select Source Logs Path Observation Field - Field to count distinct values of. Nested schema for observation_field:
- Observation
Field LogsDashboard Variable Definition Multi Select Source Logs Path Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Variable Definition Multi Select Source Logs Path Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field LogsDashboard Variable Definition Multi Select Source Logs Path Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation_
field LogsDashboard Variable Definition Multi Select Source Logs Path Observation Field - Field to count distinct values of. Nested schema for observation_field:
- observation
Field Property Map - Field to count distinct values of. Nested schema for observation_field:
LogsDashboardVariableDefinitionMultiSelectSourceLogsPathObservationField, LogsDashboardVariableDefinitionMultiSelectSourceLogsPathObservationFieldArgs
- Keypaths List<string>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- Keypaths []string
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- Scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths string[]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope string
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths Sequence[str]
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope str
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
- keypaths List<String>
- Path within the dataset scope.
- Constraints: The list items must match regular expression
^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
. The maximum length is4096
items. The minimum length is1
item.
- Constraints: The list items must match regular expression
- scope String
- Scope of the dataset.
- Constraints: Allowable values are:
unspecified
,user_data
,label
,metadata
.
- Constraints: Allowable values are:
LogsDashboardVariableDefinitionMultiSelectSourceMetricLabel, LogsDashboardVariableDefinitionMultiSelectSourceMetricLabelArgs
- Label string
- Metric label to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Metric
Name string - Metric name to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Label string
- Metric label to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Metric
Name string - Metric name to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- label String
- Metric label to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- metric
Name String - Metric name to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- label string
- Metric label to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- metric
Name string - Metric name to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- label str
- Metric label to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- metric_
name str - Metric name to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- label String
- Metric label to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- metric
Name String - Metric name to source unique values from.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
Import
You can import the ibm_logs_dashboard
resource by using id
. id
combination of region
, instance_id
and dashboard_id
.
Syntax
```sh $ pulumi import ibm:index/logsDashboard:LogsDashboard logs_dashboard < region >/< instance_id >/< dashboard_id >; ```
Example
$ pulumi import ibm:index/logsDashboard:LogsDashboard logs_dashboard eu-gb/3dc02998-0b50-4ea8-b68a-4779d716fa1f/6U1Q8Hpa263Se8PkRKaiE
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.