ibm.LogsAlert
Explore with Pulumi AI
Create, update, and delete logs_alerts with this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const logsInstance = new ibm.ResourceInstance("logsInstance", {
service: "logs",
plan: "standard",
location: "eu-gb",
});
const logsAlertInstance = new ibm.LogsAlert("logsAlertInstance", {
instanceId: logsInstance.guid,
region: logsInstance.location,
isActive: true,
severity: "info_or_unspecified",
condition: {
newValue: {
parameters: {
threshold: 1,
timeframe: "timeframe_12_h",
groupBies: ["ibm.logId"],
relativeTimeframe: "hour_or_unspecified",
cardinalityFields: [],
},
},
},
notificationGroups: [{
groupByFields: ["ibm.logId"],
}],
filters: {
text: "text",
filterType: "text_or_unspecified",
},
metaLabelsStrings: [],
incidentSettings: {
retriggeringPeriodSeconds: 43200,
notifyOn: "triggered_only",
},
});
import pulumi
import pulumi_ibm as ibm
logs_instance = ibm.ResourceInstance("logsInstance",
service="logs",
plan="standard",
location="eu-gb")
logs_alert_instance = ibm.LogsAlert("logsAlertInstance",
instance_id=logs_instance.guid,
region=logs_instance.location,
is_active=True,
severity="info_or_unspecified",
condition={
"new_value": {
"parameters": {
"threshold": 1,
"timeframe": "timeframe_12_h",
"group_bies": ["ibm.logId"],
"relative_timeframe": "hour_or_unspecified",
"cardinality_fields": [],
},
},
},
notification_groups=[{
"group_by_fields": ["ibm.logId"],
}],
filters={
"text": "text",
"filter_type": "text_or_unspecified",
},
meta_labels_strings=[],
incident_settings={
"retriggering_period_seconds": 43200,
"notify_on": "triggered_only",
})
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 {
logsInstance, err := ibm.NewResourceInstance(ctx, "logsInstance", &ibm.ResourceInstanceArgs{
Service: pulumi.String("logs"),
Plan: pulumi.String("standard"),
Location: pulumi.String("eu-gb"),
})
if err != nil {
return err
}
_, err = ibm.NewLogsAlert(ctx, "logsAlertInstance", &ibm.LogsAlertArgs{
InstanceId: logsInstance.Guid,
Region: logsInstance.Location,
IsActive: pulumi.Bool(true),
Severity: pulumi.String("info_or_unspecified"),
Condition: &ibm.LogsAlertConditionArgs{
NewValue: &ibm.LogsAlertConditionNewValueArgs{
Parameters: &ibm.LogsAlertConditionNewValueParametersArgs{
Threshold: pulumi.Float64(1),
Timeframe: pulumi.String("timeframe_12_h"),
GroupBies: pulumi.StringArray{
pulumi.String("ibm.logId"),
},
RelativeTimeframe: pulumi.String("hour_or_unspecified"),
CardinalityFields: pulumi.StringArray{},
},
},
},
NotificationGroups: ibm.LogsAlertNotificationGroupArray{
&ibm.LogsAlertNotificationGroupArgs{
GroupByFields: pulumi.StringArray{
pulumi.String("ibm.logId"),
},
},
},
Filters: &ibm.LogsAlertFiltersArgs{
Text: pulumi.String("text"),
FilterType: pulumi.String("text_or_unspecified"),
},
MetaLabelsStrings: pulumi.StringArray{},
IncidentSettings: &ibm.LogsAlertIncidentSettingsArgs{
RetriggeringPeriodSeconds: pulumi.Float64(43200),
NotifyOn: pulumi.String("triggered_only"),
},
})
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 logsInstance = new Ibm.ResourceInstance("logsInstance", new()
{
Service = "logs",
Plan = "standard",
Location = "eu-gb",
});
var logsAlertInstance = new Ibm.LogsAlert("logsAlertInstance", new()
{
InstanceId = logsInstance.Guid,
Region = logsInstance.Location,
IsActive = true,
Severity = "info_or_unspecified",
Condition = new Ibm.Inputs.LogsAlertConditionArgs
{
NewValue = new Ibm.Inputs.LogsAlertConditionNewValueArgs
{
Parameters = new Ibm.Inputs.LogsAlertConditionNewValueParametersArgs
{
Threshold = 1,
Timeframe = "timeframe_12_h",
GroupBies = new[]
{
"ibm.logId",
},
RelativeTimeframe = "hour_or_unspecified",
CardinalityFields = new() { },
},
},
},
NotificationGroups = new[]
{
new Ibm.Inputs.LogsAlertNotificationGroupArgs
{
GroupByFields = new[]
{
"ibm.logId",
},
},
},
Filters = new Ibm.Inputs.LogsAlertFiltersArgs
{
Text = "text",
FilterType = "text_or_unspecified",
},
MetaLabelsStrings = new[] {},
IncidentSettings = new Ibm.Inputs.LogsAlertIncidentSettingsArgs
{
RetriggeringPeriodSeconds = 43200,
NotifyOn = "triggered_only",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.ResourceInstance;
import com.pulumi.ibm.ResourceInstanceArgs;
import com.pulumi.ibm.LogsAlert;
import com.pulumi.ibm.LogsAlertArgs;
import com.pulumi.ibm.inputs.LogsAlertConditionArgs;
import com.pulumi.ibm.inputs.LogsAlertConditionNewValueArgs;
import com.pulumi.ibm.inputs.LogsAlertConditionNewValueParametersArgs;
import com.pulumi.ibm.inputs.LogsAlertNotificationGroupArgs;
import com.pulumi.ibm.inputs.LogsAlertFiltersArgs;
import com.pulumi.ibm.inputs.LogsAlertIncidentSettingsArgs;
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 logsInstance = new ResourceInstance("logsInstance", ResourceInstanceArgs.builder()
.service("logs")
.plan("standard")
.location("eu-gb")
.build());
var logsAlertInstance = new LogsAlert("logsAlertInstance", LogsAlertArgs.builder()
.instanceId(logsInstance.guid())
.region(logsInstance.location())
.isActive(true)
.severity("info_or_unspecified")
.condition(LogsAlertConditionArgs.builder()
.newValue(LogsAlertConditionNewValueArgs.builder()
.parameters(LogsAlertConditionNewValueParametersArgs.builder()
.threshold(1)
.timeframe("timeframe_12_h")
.groupBies("ibm.logId")
.relativeTimeframe("hour_or_unspecified")
.cardinalityFields()
.build())
.build())
.build())
.notificationGroups(LogsAlertNotificationGroupArgs.builder()
.groupByFields("ibm.logId")
.build())
.filters(LogsAlertFiltersArgs.builder()
.text("text")
.filterType("text_or_unspecified")
.build())
.metaLabelsStrings()
.incidentSettings(LogsAlertIncidentSettingsArgs.builder()
.retriggeringPeriodSeconds(43200)
.notifyOn("triggered_only")
.build())
.build());
}
}
resources:
logsInstance:
type: ibm:ResourceInstance
properties:
service: logs
plan: standard
location: eu-gb
logsAlertInstance:
type: ibm:LogsAlert
properties:
instanceId: ${logsInstance.guid}
region: ${logsInstance.location}
isActive: true
severity: info_or_unspecified
condition:
newValue:
parameters:
threshold: 1
timeframe: timeframe_12_h
groupBies:
- ibm.logId
relativeTimeframe: hour_or_unspecified
cardinalityFields: []
notificationGroups:
- groupByFields:
- ibm.logId
filters:
text: text
filterType: text_or_unspecified
metaLabelsStrings: []
incidentSettings:
retriggeringPeriodSeconds: 43200
notifyOn: triggered_only
Create LogsAlert Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LogsAlert(name: string, args: LogsAlertArgs, opts?: CustomResourceOptions);
@overload
def LogsAlert(resource_name: str,
args: LogsAlertArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LogsAlert(resource_name: str,
opts: Optional[ResourceOptions] = None,
filters: Optional[LogsAlertFiltersArgs] = None,
condition: Optional[LogsAlertConditionArgs] = None,
severity: Optional[str] = None,
is_active: Optional[bool] = None,
instance_id: Optional[str] = None,
expiration: Optional[LogsAlertExpirationArgs] = None,
incident_settings: Optional[LogsAlertIncidentSettingsArgs] = None,
active_when: Optional[LogsAlertActiveWhenArgs] = None,
endpoint_type: Optional[str] = None,
logs_alert_id: Optional[str] = None,
meta_labels: Optional[Sequence[LogsAlertMetaLabelArgs]] = None,
meta_labels_strings: Optional[Sequence[str]] = None,
name: Optional[str] = None,
notification_groups: Optional[Sequence[LogsAlertNotificationGroupArgs]] = None,
notification_payload_filters: Optional[Sequence[str]] = None,
region: Optional[str] = None,
description: Optional[str] = None)
func NewLogsAlert(ctx *Context, name string, args LogsAlertArgs, opts ...ResourceOption) (*LogsAlert, error)
public LogsAlert(string name, LogsAlertArgs args, CustomResourceOptions? opts = null)
public LogsAlert(String name, LogsAlertArgs args)
public LogsAlert(String name, LogsAlertArgs args, CustomResourceOptions options)
type: ibm:LogsAlert
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 LogsAlertArgs
- 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 LogsAlertArgs
- 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 LogsAlertArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogsAlertArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LogsAlertArgs
- 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 logsAlertResource = new Ibm.LogsAlert("logsAlertResource", new()
{
Filters = new Ibm.Inputs.LogsAlertFiltersArgs
{
Alias = "string",
FilterType = "string",
Metadata = new Ibm.Inputs.LogsAlertFiltersMetadataArgs
{
Applications = new[]
{
"string",
},
Subsystems = new[]
{
"string",
},
},
RatioAlerts = new[]
{
new Ibm.Inputs.LogsAlertFiltersRatioAlertArgs
{
Alias = "string",
Applications = new[]
{
"string",
},
GroupBies = new[]
{
"string",
},
Severities = new[]
{
"string",
},
Subsystems = new[]
{
"string",
},
Text = "string",
},
},
Severities = new[]
{
"string",
},
Text = "string",
},
Condition = new Ibm.Inputs.LogsAlertConditionArgs
{
Flow = new Ibm.Inputs.LogsAlertConditionFlowArgs
{
EnforceSuppression = false,
Parameters = new Ibm.Inputs.LogsAlertConditionFlowParametersArgs
{
Threshold = 0,
Timeframe = "string",
CardinalityFields = new[]
{
"string",
},
GroupBies = new[]
{
"string",
},
IgnoreInfinity = false,
MetricAlertParameters = new Ibm.Inputs.LogsAlertConditionFlowParametersMetricAlertParametersArgs
{
ArithmeticOperator = "string",
MetricField = "string",
MetricSource = "string",
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SampleThresholdPercentage = 0,
SwapNullValues = false,
},
MetricAlertPromqlParameters = new Ibm.Inputs.LogsAlertConditionFlowParametersMetricAlertPromqlParametersArgs
{
PromqlText = "string",
SampleThresholdPercentage = 0,
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SwapNullValues = false,
},
RelatedExtendedData = new Ibm.Inputs.LogsAlertConditionFlowParametersRelatedExtendedDataArgs
{
CleanupDeadmanDuration = "string",
ShouldTriggerDeadman = false,
},
RelativeTimeframe = "string",
},
Stages = new[]
{
new Ibm.Inputs.LogsAlertConditionFlowStageArgs
{
Groups = new[]
{
new Ibm.Inputs.LogsAlertConditionFlowStageGroupArgs
{
Alerts = new Ibm.Inputs.LogsAlertConditionFlowStageGroupAlertsArgs
{
Op = "string",
Values = new[]
{
new Ibm.Inputs.LogsAlertConditionFlowStageGroupAlertsValueArgs
{
Id = "string",
Not = false,
},
},
},
NextOp = "string",
},
},
Timeframe = new Ibm.Inputs.LogsAlertConditionFlowStageTimeframeArgs
{
Ms = 0,
},
},
},
},
Immediate = null,
LessThan = new Ibm.Inputs.LogsAlertConditionLessThanArgs
{
Parameters = new Ibm.Inputs.LogsAlertConditionLessThanParametersArgs
{
Threshold = 0,
Timeframe = "string",
CardinalityFields = new[]
{
"string",
},
GroupBies = new[]
{
"string",
},
IgnoreInfinity = false,
MetricAlertParameters = new Ibm.Inputs.LogsAlertConditionLessThanParametersMetricAlertParametersArgs
{
ArithmeticOperator = "string",
MetricField = "string",
MetricSource = "string",
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SampleThresholdPercentage = 0,
SwapNullValues = false,
},
MetricAlertPromqlParameters = new Ibm.Inputs.LogsAlertConditionLessThanParametersMetricAlertPromqlParametersArgs
{
PromqlText = "string",
SampleThresholdPercentage = 0,
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SwapNullValues = false,
},
RelatedExtendedData = new Ibm.Inputs.LogsAlertConditionLessThanParametersRelatedExtendedDataArgs
{
CleanupDeadmanDuration = "string",
ShouldTriggerDeadman = false,
},
RelativeTimeframe = "string",
},
},
LessThanUsual = new Ibm.Inputs.LogsAlertConditionLessThanUsualArgs
{
Parameters = new Ibm.Inputs.LogsAlertConditionLessThanUsualParametersArgs
{
Threshold = 0,
Timeframe = "string",
CardinalityFields = new[]
{
"string",
},
GroupBies = new[]
{
"string",
},
IgnoreInfinity = false,
MetricAlertParameters = new Ibm.Inputs.LogsAlertConditionLessThanUsualParametersMetricAlertParametersArgs
{
ArithmeticOperator = "string",
MetricField = "string",
MetricSource = "string",
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SampleThresholdPercentage = 0,
SwapNullValues = false,
},
MetricAlertPromqlParameters = new Ibm.Inputs.LogsAlertConditionLessThanUsualParametersMetricAlertPromqlParametersArgs
{
PromqlText = "string",
SampleThresholdPercentage = 0,
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SwapNullValues = false,
},
RelatedExtendedData = new Ibm.Inputs.LogsAlertConditionLessThanUsualParametersRelatedExtendedDataArgs
{
CleanupDeadmanDuration = "string",
ShouldTriggerDeadman = false,
},
RelativeTimeframe = "string",
},
},
MoreThan = new Ibm.Inputs.LogsAlertConditionMoreThanArgs
{
Parameters = new Ibm.Inputs.LogsAlertConditionMoreThanParametersArgs
{
Threshold = 0,
Timeframe = "string",
CardinalityFields = new[]
{
"string",
},
GroupBies = new[]
{
"string",
},
IgnoreInfinity = false,
MetricAlertParameters = new Ibm.Inputs.LogsAlertConditionMoreThanParametersMetricAlertParametersArgs
{
ArithmeticOperator = "string",
MetricField = "string",
MetricSource = "string",
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SampleThresholdPercentage = 0,
SwapNullValues = false,
},
MetricAlertPromqlParameters = new Ibm.Inputs.LogsAlertConditionMoreThanParametersMetricAlertPromqlParametersArgs
{
PromqlText = "string",
SampleThresholdPercentage = 0,
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SwapNullValues = false,
},
RelatedExtendedData = new Ibm.Inputs.LogsAlertConditionMoreThanParametersRelatedExtendedDataArgs
{
CleanupDeadmanDuration = "string",
ShouldTriggerDeadman = false,
},
RelativeTimeframe = "string",
},
EvaluationWindow = "string",
},
MoreThanUsual = new Ibm.Inputs.LogsAlertConditionMoreThanUsualArgs
{
Parameters = new Ibm.Inputs.LogsAlertConditionMoreThanUsualParametersArgs
{
Threshold = 0,
Timeframe = "string",
CardinalityFields = new[]
{
"string",
},
GroupBies = new[]
{
"string",
},
IgnoreInfinity = false,
MetricAlertParameters = new Ibm.Inputs.LogsAlertConditionMoreThanUsualParametersMetricAlertParametersArgs
{
ArithmeticOperator = "string",
MetricField = "string",
MetricSource = "string",
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SampleThresholdPercentage = 0,
SwapNullValues = false,
},
MetricAlertPromqlParameters = new Ibm.Inputs.LogsAlertConditionMoreThanUsualParametersMetricAlertPromqlParametersArgs
{
PromqlText = "string",
SampleThresholdPercentage = 0,
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SwapNullValues = false,
},
RelatedExtendedData = new Ibm.Inputs.LogsAlertConditionMoreThanUsualParametersRelatedExtendedDataArgs
{
CleanupDeadmanDuration = "string",
ShouldTriggerDeadman = false,
},
RelativeTimeframe = "string",
},
},
NewValue = new Ibm.Inputs.LogsAlertConditionNewValueArgs
{
Parameters = new Ibm.Inputs.LogsAlertConditionNewValueParametersArgs
{
Threshold = 0,
Timeframe = "string",
CardinalityFields = new[]
{
"string",
},
GroupBies = new[]
{
"string",
},
IgnoreInfinity = false,
MetricAlertParameters = new Ibm.Inputs.LogsAlertConditionNewValueParametersMetricAlertParametersArgs
{
ArithmeticOperator = "string",
MetricField = "string",
MetricSource = "string",
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SampleThresholdPercentage = 0,
SwapNullValues = false,
},
MetricAlertPromqlParameters = new Ibm.Inputs.LogsAlertConditionNewValueParametersMetricAlertPromqlParametersArgs
{
PromqlText = "string",
SampleThresholdPercentage = 0,
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SwapNullValues = false,
},
RelatedExtendedData = new Ibm.Inputs.LogsAlertConditionNewValueParametersRelatedExtendedDataArgs
{
CleanupDeadmanDuration = "string",
ShouldTriggerDeadman = false,
},
RelativeTimeframe = "string",
},
},
UniqueCount = new Ibm.Inputs.LogsAlertConditionUniqueCountArgs
{
Parameters = new Ibm.Inputs.LogsAlertConditionUniqueCountParametersArgs
{
Threshold = 0,
Timeframe = "string",
CardinalityFields = new[]
{
"string",
},
GroupBies = new[]
{
"string",
},
IgnoreInfinity = false,
MetricAlertParameters = new Ibm.Inputs.LogsAlertConditionUniqueCountParametersMetricAlertParametersArgs
{
ArithmeticOperator = "string",
MetricField = "string",
MetricSource = "string",
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SampleThresholdPercentage = 0,
SwapNullValues = false,
},
MetricAlertPromqlParameters = new Ibm.Inputs.LogsAlertConditionUniqueCountParametersMetricAlertPromqlParametersArgs
{
PromqlText = "string",
SampleThresholdPercentage = 0,
ArithmeticOperatorModifier = 0,
NonNullPercentage = 0,
SwapNullValues = false,
},
RelatedExtendedData = new Ibm.Inputs.LogsAlertConditionUniqueCountParametersRelatedExtendedDataArgs
{
CleanupDeadmanDuration = "string",
ShouldTriggerDeadman = false,
},
RelativeTimeframe = "string",
},
},
},
Severity = "string",
IsActive = false,
InstanceId = "string",
Expiration = new Ibm.Inputs.LogsAlertExpirationArgs
{
Day = 0,
Month = 0,
Year = 0,
},
IncidentSettings = new Ibm.Inputs.LogsAlertIncidentSettingsArgs
{
NotifyOn = "string",
RetriggeringPeriodSeconds = 0,
UseAsNotificationSettings = false,
},
ActiveWhen = new Ibm.Inputs.LogsAlertActiveWhenArgs
{
Timeframes = new[]
{
new Ibm.Inputs.LogsAlertActiveWhenTimeframeArgs
{
DaysOfWeeks = new[]
{
"string",
},
Range = new Ibm.Inputs.LogsAlertActiveWhenTimeframeRangeArgs
{
End = new Ibm.Inputs.LogsAlertActiveWhenTimeframeRangeEndArgs
{
Hours = 0,
Minutes = 0,
Seconds = 0,
},
Start = new Ibm.Inputs.LogsAlertActiveWhenTimeframeRangeStartArgs
{
Hours = 0,
Minutes = 0,
Seconds = 0,
},
},
},
},
},
EndpointType = "string",
LogsAlertId = "string",
MetaLabels = new[]
{
new Ibm.Inputs.LogsAlertMetaLabelArgs
{
Key = "string",
Value = "string",
},
},
MetaLabelsStrings = new[]
{
"string",
},
Name = "string",
NotificationGroups = new[]
{
new Ibm.Inputs.LogsAlertNotificationGroupArgs
{
GroupByFields = new[]
{
"string",
},
Notifications = new[]
{
new Ibm.Inputs.LogsAlertNotificationGroupNotificationArgs
{
IntegrationId = 0,
NotifyOn = "string",
Recipients = new Ibm.Inputs.LogsAlertNotificationGroupNotificationRecipientsArgs
{
Emails = new[]
{
"string",
},
},
RetriggeringPeriodSeconds = 0,
},
},
},
},
NotificationPayloadFilters = new[]
{
"string",
},
Region = "string",
Description = "string",
});
example, err := ibm.NewLogsAlert(ctx, "logsAlertResource", &ibm.LogsAlertArgs{
Filters: &ibm.LogsAlertFiltersArgs{
Alias: pulumi.String("string"),
FilterType: pulumi.String("string"),
Metadata: &ibm.LogsAlertFiltersMetadataArgs{
Applications: pulumi.StringArray{
pulumi.String("string"),
},
Subsystems: pulumi.StringArray{
pulumi.String("string"),
},
},
RatioAlerts: ibm.LogsAlertFiltersRatioAlertArray{
&ibm.LogsAlertFiltersRatioAlertArgs{
Alias: pulumi.String("string"),
Applications: pulumi.StringArray{
pulumi.String("string"),
},
GroupBies: pulumi.StringArray{
pulumi.String("string"),
},
Severities: pulumi.StringArray{
pulumi.String("string"),
},
Subsystems: pulumi.StringArray{
pulumi.String("string"),
},
Text: pulumi.String("string"),
},
},
Severities: pulumi.StringArray{
pulumi.String("string"),
},
Text: pulumi.String("string"),
},
Condition: &ibm.LogsAlertConditionArgs{
Flow: &ibm.LogsAlertConditionFlowArgs{
EnforceSuppression: pulumi.Bool(false),
Parameters: &ibm.LogsAlertConditionFlowParametersArgs{
Threshold: pulumi.Float64(0),
Timeframe: pulumi.String("string"),
CardinalityFields: pulumi.StringArray{
pulumi.String("string"),
},
GroupBies: pulumi.StringArray{
pulumi.String("string"),
},
IgnoreInfinity: pulumi.Bool(false),
MetricAlertParameters: &ibm.LogsAlertConditionFlowParametersMetricAlertParametersArgs{
ArithmeticOperator: pulumi.String("string"),
MetricField: pulumi.String("string"),
MetricSource: pulumi.String("string"),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SampleThresholdPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
MetricAlertPromqlParameters: &ibm.LogsAlertConditionFlowParametersMetricAlertPromqlParametersArgs{
PromqlText: pulumi.String("string"),
SampleThresholdPercentage: pulumi.Float64(0),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
RelatedExtendedData: &ibm.LogsAlertConditionFlowParametersRelatedExtendedDataArgs{
CleanupDeadmanDuration: pulumi.String("string"),
ShouldTriggerDeadman: pulumi.Bool(false),
},
RelativeTimeframe: pulumi.String("string"),
},
Stages: ibm.LogsAlertConditionFlowStageArray{
&ibm.LogsAlertConditionFlowStageArgs{
Groups: ibm.LogsAlertConditionFlowStageGroupArray{
&ibm.LogsAlertConditionFlowStageGroupArgs{
Alerts: &ibm.LogsAlertConditionFlowStageGroupAlertsArgs{
Op: pulumi.String("string"),
Values: ibm.LogsAlertConditionFlowStageGroupAlertsValueArray{
&ibm.LogsAlertConditionFlowStageGroupAlertsValueArgs{
Id: pulumi.String("string"),
Not: pulumi.Bool(false),
},
},
},
NextOp: pulumi.String("string"),
},
},
Timeframe: &ibm.LogsAlertConditionFlowStageTimeframeArgs{
Ms: pulumi.Float64(0),
},
},
},
},
Immediate: &ibm.LogsAlertConditionImmediateArgs{},
LessThan: &ibm.LogsAlertConditionLessThanArgs{
Parameters: &ibm.LogsAlertConditionLessThanParametersArgs{
Threshold: pulumi.Float64(0),
Timeframe: pulumi.String("string"),
CardinalityFields: pulumi.StringArray{
pulumi.String("string"),
},
GroupBies: pulumi.StringArray{
pulumi.String("string"),
},
IgnoreInfinity: pulumi.Bool(false),
MetricAlertParameters: &ibm.LogsAlertConditionLessThanParametersMetricAlertParametersArgs{
ArithmeticOperator: pulumi.String("string"),
MetricField: pulumi.String("string"),
MetricSource: pulumi.String("string"),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SampleThresholdPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
MetricAlertPromqlParameters: &ibm.LogsAlertConditionLessThanParametersMetricAlertPromqlParametersArgs{
PromqlText: pulumi.String("string"),
SampleThresholdPercentage: pulumi.Float64(0),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
RelatedExtendedData: &ibm.LogsAlertConditionLessThanParametersRelatedExtendedDataArgs{
CleanupDeadmanDuration: pulumi.String("string"),
ShouldTriggerDeadman: pulumi.Bool(false),
},
RelativeTimeframe: pulumi.String("string"),
},
},
LessThanUsual: &ibm.LogsAlertConditionLessThanUsualArgs{
Parameters: &ibm.LogsAlertConditionLessThanUsualParametersArgs{
Threshold: pulumi.Float64(0),
Timeframe: pulumi.String("string"),
CardinalityFields: pulumi.StringArray{
pulumi.String("string"),
},
GroupBies: pulumi.StringArray{
pulumi.String("string"),
},
IgnoreInfinity: pulumi.Bool(false),
MetricAlertParameters: &ibm.LogsAlertConditionLessThanUsualParametersMetricAlertParametersArgs{
ArithmeticOperator: pulumi.String("string"),
MetricField: pulumi.String("string"),
MetricSource: pulumi.String("string"),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SampleThresholdPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
MetricAlertPromqlParameters: &ibm.LogsAlertConditionLessThanUsualParametersMetricAlertPromqlParametersArgs{
PromqlText: pulumi.String("string"),
SampleThresholdPercentage: pulumi.Float64(0),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
RelatedExtendedData: &ibm.LogsAlertConditionLessThanUsualParametersRelatedExtendedDataArgs{
CleanupDeadmanDuration: pulumi.String("string"),
ShouldTriggerDeadman: pulumi.Bool(false),
},
RelativeTimeframe: pulumi.String("string"),
},
},
MoreThan: &ibm.LogsAlertConditionMoreThanArgs{
Parameters: &ibm.LogsAlertConditionMoreThanParametersArgs{
Threshold: pulumi.Float64(0),
Timeframe: pulumi.String("string"),
CardinalityFields: pulumi.StringArray{
pulumi.String("string"),
},
GroupBies: pulumi.StringArray{
pulumi.String("string"),
},
IgnoreInfinity: pulumi.Bool(false),
MetricAlertParameters: &ibm.LogsAlertConditionMoreThanParametersMetricAlertParametersArgs{
ArithmeticOperator: pulumi.String("string"),
MetricField: pulumi.String("string"),
MetricSource: pulumi.String("string"),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SampleThresholdPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
MetricAlertPromqlParameters: &ibm.LogsAlertConditionMoreThanParametersMetricAlertPromqlParametersArgs{
PromqlText: pulumi.String("string"),
SampleThresholdPercentage: pulumi.Float64(0),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
RelatedExtendedData: &ibm.LogsAlertConditionMoreThanParametersRelatedExtendedDataArgs{
CleanupDeadmanDuration: pulumi.String("string"),
ShouldTriggerDeadman: pulumi.Bool(false),
},
RelativeTimeframe: pulumi.String("string"),
},
EvaluationWindow: pulumi.String("string"),
},
MoreThanUsual: &ibm.LogsAlertConditionMoreThanUsualArgs{
Parameters: &ibm.LogsAlertConditionMoreThanUsualParametersArgs{
Threshold: pulumi.Float64(0),
Timeframe: pulumi.String("string"),
CardinalityFields: pulumi.StringArray{
pulumi.String("string"),
},
GroupBies: pulumi.StringArray{
pulumi.String("string"),
},
IgnoreInfinity: pulumi.Bool(false),
MetricAlertParameters: &ibm.LogsAlertConditionMoreThanUsualParametersMetricAlertParametersArgs{
ArithmeticOperator: pulumi.String("string"),
MetricField: pulumi.String("string"),
MetricSource: pulumi.String("string"),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SampleThresholdPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
MetricAlertPromqlParameters: &ibm.LogsAlertConditionMoreThanUsualParametersMetricAlertPromqlParametersArgs{
PromqlText: pulumi.String("string"),
SampleThresholdPercentage: pulumi.Float64(0),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
RelatedExtendedData: &ibm.LogsAlertConditionMoreThanUsualParametersRelatedExtendedDataArgs{
CleanupDeadmanDuration: pulumi.String("string"),
ShouldTriggerDeadman: pulumi.Bool(false),
},
RelativeTimeframe: pulumi.String("string"),
},
},
NewValue: &ibm.LogsAlertConditionNewValueArgs{
Parameters: &ibm.LogsAlertConditionNewValueParametersArgs{
Threshold: pulumi.Float64(0),
Timeframe: pulumi.String("string"),
CardinalityFields: pulumi.StringArray{
pulumi.String("string"),
},
GroupBies: pulumi.StringArray{
pulumi.String("string"),
},
IgnoreInfinity: pulumi.Bool(false),
MetricAlertParameters: &ibm.LogsAlertConditionNewValueParametersMetricAlertParametersArgs{
ArithmeticOperator: pulumi.String("string"),
MetricField: pulumi.String("string"),
MetricSource: pulumi.String("string"),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SampleThresholdPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
MetricAlertPromqlParameters: &ibm.LogsAlertConditionNewValueParametersMetricAlertPromqlParametersArgs{
PromqlText: pulumi.String("string"),
SampleThresholdPercentage: pulumi.Float64(0),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
RelatedExtendedData: &ibm.LogsAlertConditionNewValueParametersRelatedExtendedDataArgs{
CleanupDeadmanDuration: pulumi.String("string"),
ShouldTriggerDeadman: pulumi.Bool(false),
},
RelativeTimeframe: pulumi.String("string"),
},
},
UniqueCount: &ibm.LogsAlertConditionUniqueCountArgs{
Parameters: &ibm.LogsAlertConditionUniqueCountParametersArgs{
Threshold: pulumi.Float64(0),
Timeframe: pulumi.String("string"),
CardinalityFields: pulumi.StringArray{
pulumi.String("string"),
},
GroupBies: pulumi.StringArray{
pulumi.String("string"),
},
IgnoreInfinity: pulumi.Bool(false),
MetricAlertParameters: &ibm.LogsAlertConditionUniqueCountParametersMetricAlertParametersArgs{
ArithmeticOperator: pulumi.String("string"),
MetricField: pulumi.String("string"),
MetricSource: pulumi.String("string"),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SampleThresholdPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
MetricAlertPromqlParameters: &ibm.LogsAlertConditionUniqueCountParametersMetricAlertPromqlParametersArgs{
PromqlText: pulumi.String("string"),
SampleThresholdPercentage: pulumi.Float64(0),
ArithmeticOperatorModifier: pulumi.Float64(0),
NonNullPercentage: pulumi.Float64(0),
SwapNullValues: pulumi.Bool(false),
},
RelatedExtendedData: &ibm.LogsAlertConditionUniqueCountParametersRelatedExtendedDataArgs{
CleanupDeadmanDuration: pulumi.String("string"),
ShouldTriggerDeadman: pulumi.Bool(false),
},
RelativeTimeframe: pulumi.String("string"),
},
},
},
Severity: pulumi.String("string"),
IsActive: pulumi.Bool(false),
InstanceId: pulumi.String("string"),
Expiration: &ibm.LogsAlertExpirationArgs{
Day: pulumi.Float64(0),
Month: pulumi.Float64(0),
Year: pulumi.Float64(0),
},
IncidentSettings: &ibm.LogsAlertIncidentSettingsArgs{
NotifyOn: pulumi.String("string"),
RetriggeringPeriodSeconds: pulumi.Float64(0),
UseAsNotificationSettings: pulumi.Bool(false),
},
ActiveWhen: &ibm.LogsAlertActiveWhenArgs{
Timeframes: ibm.LogsAlertActiveWhenTimeframeArray{
&ibm.LogsAlertActiveWhenTimeframeArgs{
DaysOfWeeks: pulumi.StringArray{
pulumi.String("string"),
},
Range: &ibm.LogsAlertActiveWhenTimeframeRangeArgs{
End: &ibm.LogsAlertActiveWhenTimeframeRangeEndArgs{
Hours: pulumi.Float64(0),
Minutes: pulumi.Float64(0),
Seconds: pulumi.Float64(0),
},
Start: &ibm.LogsAlertActiveWhenTimeframeRangeStartArgs{
Hours: pulumi.Float64(0),
Minutes: pulumi.Float64(0),
Seconds: pulumi.Float64(0),
},
},
},
},
},
EndpointType: pulumi.String("string"),
LogsAlertId: pulumi.String("string"),
MetaLabels: ibm.LogsAlertMetaLabelArray{
&ibm.LogsAlertMetaLabelArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
MetaLabelsStrings: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
NotificationGroups: ibm.LogsAlertNotificationGroupArray{
&ibm.LogsAlertNotificationGroupArgs{
GroupByFields: pulumi.StringArray{
pulumi.String("string"),
},
Notifications: ibm.LogsAlertNotificationGroupNotificationArray{
&ibm.LogsAlertNotificationGroupNotificationArgs{
IntegrationId: pulumi.Float64(0),
NotifyOn: pulumi.String("string"),
Recipients: &ibm.LogsAlertNotificationGroupNotificationRecipientsArgs{
Emails: pulumi.StringArray{
pulumi.String("string"),
},
},
RetriggeringPeriodSeconds: pulumi.Float64(0),
},
},
},
},
NotificationPayloadFilters: pulumi.StringArray{
pulumi.String("string"),
},
Region: pulumi.String("string"),
Description: pulumi.String("string"),
})
var logsAlertResource = new LogsAlert("logsAlertResource", LogsAlertArgs.builder()
.filters(LogsAlertFiltersArgs.builder()
.alias("string")
.filterType("string")
.metadata(LogsAlertFiltersMetadataArgs.builder()
.applications("string")
.subsystems("string")
.build())
.ratioAlerts(LogsAlertFiltersRatioAlertArgs.builder()
.alias("string")
.applications("string")
.groupBies("string")
.severities("string")
.subsystems("string")
.text("string")
.build())
.severities("string")
.text("string")
.build())
.condition(LogsAlertConditionArgs.builder()
.flow(LogsAlertConditionFlowArgs.builder()
.enforceSuppression(false)
.parameters(LogsAlertConditionFlowParametersArgs.builder()
.threshold(0)
.timeframe("string")
.cardinalityFields("string")
.groupBies("string")
.ignoreInfinity(false)
.metricAlertParameters(LogsAlertConditionFlowParametersMetricAlertParametersArgs.builder()
.arithmeticOperator("string")
.metricField("string")
.metricSource("string")
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.sampleThresholdPercentage(0)
.swapNullValues(false)
.build())
.metricAlertPromqlParameters(LogsAlertConditionFlowParametersMetricAlertPromqlParametersArgs.builder()
.promqlText("string")
.sampleThresholdPercentage(0)
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.swapNullValues(false)
.build())
.relatedExtendedData(LogsAlertConditionFlowParametersRelatedExtendedDataArgs.builder()
.cleanupDeadmanDuration("string")
.shouldTriggerDeadman(false)
.build())
.relativeTimeframe("string")
.build())
.stages(LogsAlertConditionFlowStageArgs.builder()
.groups(LogsAlertConditionFlowStageGroupArgs.builder()
.alerts(LogsAlertConditionFlowStageGroupAlertsArgs.builder()
.op("string")
.values(LogsAlertConditionFlowStageGroupAlertsValueArgs.builder()
.id("string")
.not(false)
.build())
.build())
.nextOp("string")
.build())
.timeframe(LogsAlertConditionFlowStageTimeframeArgs.builder()
.ms(0)
.build())
.build())
.build())
.immediate()
.lessThan(LogsAlertConditionLessThanArgs.builder()
.parameters(LogsAlertConditionLessThanParametersArgs.builder()
.threshold(0)
.timeframe("string")
.cardinalityFields("string")
.groupBies("string")
.ignoreInfinity(false)
.metricAlertParameters(LogsAlertConditionLessThanParametersMetricAlertParametersArgs.builder()
.arithmeticOperator("string")
.metricField("string")
.metricSource("string")
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.sampleThresholdPercentage(0)
.swapNullValues(false)
.build())
.metricAlertPromqlParameters(LogsAlertConditionLessThanParametersMetricAlertPromqlParametersArgs.builder()
.promqlText("string")
.sampleThresholdPercentage(0)
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.swapNullValues(false)
.build())
.relatedExtendedData(LogsAlertConditionLessThanParametersRelatedExtendedDataArgs.builder()
.cleanupDeadmanDuration("string")
.shouldTriggerDeadman(false)
.build())
.relativeTimeframe("string")
.build())
.build())
.lessThanUsual(LogsAlertConditionLessThanUsualArgs.builder()
.parameters(LogsAlertConditionLessThanUsualParametersArgs.builder()
.threshold(0)
.timeframe("string")
.cardinalityFields("string")
.groupBies("string")
.ignoreInfinity(false)
.metricAlertParameters(LogsAlertConditionLessThanUsualParametersMetricAlertParametersArgs.builder()
.arithmeticOperator("string")
.metricField("string")
.metricSource("string")
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.sampleThresholdPercentage(0)
.swapNullValues(false)
.build())
.metricAlertPromqlParameters(LogsAlertConditionLessThanUsualParametersMetricAlertPromqlParametersArgs.builder()
.promqlText("string")
.sampleThresholdPercentage(0)
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.swapNullValues(false)
.build())
.relatedExtendedData(LogsAlertConditionLessThanUsualParametersRelatedExtendedDataArgs.builder()
.cleanupDeadmanDuration("string")
.shouldTriggerDeadman(false)
.build())
.relativeTimeframe("string")
.build())
.build())
.moreThan(LogsAlertConditionMoreThanArgs.builder()
.parameters(LogsAlertConditionMoreThanParametersArgs.builder()
.threshold(0)
.timeframe("string")
.cardinalityFields("string")
.groupBies("string")
.ignoreInfinity(false)
.metricAlertParameters(LogsAlertConditionMoreThanParametersMetricAlertParametersArgs.builder()
.arithmeticOperator("string")
.metricField("string")
.metricSource("string")
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.sampleThresholdPercentage(0)
.swapNullValues(false)
.build())
.metricAlertPromqlParameters(LogsAlertConditionMoreThanParametersMetricAlertPromqlParametersArgs.builder()
.promqlText("string")
.sampleThresholdPercentage(0)
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.swapNullValues(false)
.build())
.relatedExtendedData(LogsAlertConditionMoreThanParametersRelatedExtendedDataArgs.builder()
.cleanupDeadmanDuration("string")
.shouldTriggerDeadman(false)
.build())
.relativeTimeframe("string")
.build())
.evaluationWindow("string")
.build())
.moreThanUsual(LogsAlertConditionMoreThanUsualArgs.builder()
.parameters(LogsAlertConditionMoreThanUsualParametersArgs.builder()
.threshold(0)
.timeframe("string")
.cardinalityFields("string")
.groupBies("string")
.ignoreInfinity(false)
.metricAlertParameters(LogsAlertConditionMoreThanUsualParametersMetricAlertParametersArgs.builder()
.arithmeticOperator("string")
.metricField("string")
.metricSource("string")
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.sampleThresholdPercentage(0)
.swapNullValues(false)
.build())
.metricAlertPromqlParameters(LogsAlertConditionMoreThanUsualParametersMetricAlertPromqlParametersArgs.builder()
.promqlText("string")
.sampleThresholdPercentage(0)
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.swapNullValues(false)
.build())
.relatedExtendedData(LogsAlertConditionMoreThanUsualParametersRelatedExtendedDataArgs.builder()
.cleanupDeadmanDuration("string")
.shouldTriggerDeadman(false)
.build())
.relativeTimeframe("string")
.build())
.build())
.newValue(LogsAlertConditionNewValueArgs.builder()
.parameters(LogsAlertConditionNewValueParametersArgs.builder()
.threshold(0)
.timeframe("string")
.cardinalityFields("string")
.groupBies("string")
.ignoreInfinity(false)
.metricAlertParameters(LogsAlertConditionNewValueParametersMetricAlertParametersArgs.builder()
.arithmeticOperator("string")
.metricField("string")
.metricSource("string")
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.sampleThresholdPercentage(0)
.swapNullValues(false)
.build())
.metricAlertPromqlParameters(LogsAlertConditionNewValueParametersMetricAlertPromqlParametersArgs.builder()
.promqlText("string")
.sampleThresholdPercentage(0)
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.swapNullValues(false)
.build())
.relatedExtendedData(LogsAlertConditionNewValueParametersRelatedExtendedDataArgs.builder()
.cleanupDeadmanDuration("string")
.shouldTriggerDeadman(false)
.build())
.relativeTimeframe("string")
.build())
.build())
.uniqueCount(LogsAlertConditionUniqueCountArgs.builder()
.parameters(LogsAlertConditionUniqueCountParametersArgs.builder()
.threshold(0)
.timeframe("string")
.cardinalityFields("string")
.groupBies("string")
.ignoreInfinity(false)
.metricAlertParameters(LogsAlertConditionUniqueCountParametersMetricAlertParametersArgs.builder()
.arithmeticOperator("string")
.metricField("string")
.metricSource("string")
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.sampleThresholdPercentage(0)
.swapNullValues(false)
.build())
.metricAlertPromqlParameters(LogsAlertConditionUniqueCountParametersMetricAlertPromqlParametersArgs.builder()
.promqlText("string")
.sampleThresholdPercentage(0)
.arithmeticOperatorModifier(0)
.nonNullPercentage(0)
.swapNullValues(false)
.build())
.relatedExtendedData(LogsAlertConditionUniqueCountParametersRelatedExtendedDataArgs.builder()
.cleanupDeadmanDuration("string")
.shouldTriggerDeadman(false)
.build())
.relativeTimeframe("string")
.build())
.build())
.build())
.severity("string")
.isActive(false)
.instanceId("string")
.expiration(LogsAlertExpirationArgs.builder()
.day(0)
.month(0)
.year(0)
.build())
.incidentSettings(LogsAlertIncidentSettingsArgs.builder()
.notifyOn("string")
.retriggeringPeriodSeconds(0)
.useAsNotificationSettings(false)
.build())
.activeWhen(LogsAlertActiveWhenArgs.builder()
.timeframes(LogsAlertActiveWhenTimeframeArgs.builder()
.daysOfWeeks("string")
.range(LogsAlertActiveWhenTimeframeRangeArgs.builder()
.end(LogsAlertActiveWhenTimeframeRangeEndArgs.builder()
.hours(0)
.minutes(0)
.seconds(0)
.build())
.start(LogsAlertActiveWhenTimeframeRangeStartArgs.builder()
.hours(0)
.minutes(0)
.seconds(0)
.build())
.build())
.build())
.build())
.endpointType("string")
.logsAlertId("string")
.metaLabels(LogsAlertMetaLabelArgs.builder()
.key("string")
.value("string")
.build())
.metaLabelsStrings("string")
.name("string")
.notificationGroups(LogsAlertNotificationGroupArgs.builder()
.groupByFields("string")
.notifications(LogsAlertNotificationGroupNotificationArgs.builder()
.integrationId(0)
.notifyOn("string")
.recipients(LogsAlertNotificationGroupNotificationRecipientsArgs.builder()
.emails("string")
.build())
.retriggeringPeriodSeconds(0)
.build())
.build())
.notificationPayloadFilters("string")
.region("string")
.description("string")
.build());
logs_alert_resource = ibm.LogsAlert("logsAlertResource",
filters={
"alias": "string",
"filter_type": "string",
"metadata": {
"applications": ["string"],
"subsystems": ["string"],
},
"ratio_alerts": [{
"alias": "string",
"applications": ["string"],
"group_bies": ["string"],
"severities": ["string"],
"subsystems": ["string"],
"text": "string",
}],
"severities": ["string"],
"text": "string",
},
condition={
"flow": {
"enforce_suppression": False,
"parameters": {
"threshold": 0,
"timeframe": "string",
"cardinality_fields": ["string"],
"group_bies": ["string"],
"ignore_infinity": False,
"metric_alert_parameters": {
"arithmetic_operator": "string",
"metric_field": "string",
"metric_source": "string",
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"sample_threshold_percentage": 0,
"swap_null_values": False,
},
"metric_alert_promql_parameters": {
"promql_text": "string",
"sample_threshold_percentage": 0,
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"swap_null_values": False,
},
"related_extended_data": {
"cleanup_deadman_duration": "string",
"should_trigger_deadman": False,
},
"relative_timeframe": "string",
},
"stages": [{
"groups": [{
"alerts": {
"op": "string",
"values": [{
"id": "string",
"not_": False,
}],
},
"next_op": "string",
}],
"timeframe": {
"ms": 0,
},
}],
},
"immediate": {},
"less_than": {
"parameters": {
"threshold": 0,
"timeframe": "string",
"cardinality_fields": ["string"],
"group_bies": ["string"],
"ignore_infinity": False,
"metric_alert_parameters": {
"arithmetic_operator": "string",
"metric_field": "string",
"metric_source": "string",
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"sample_threshold_percentage": 0,
"swap_null_values": False,
},
"metric_alert_promql_parameters": {
"promql_text": "string",
"sample_threshold_percentage": 0,
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"swap_null_values": False,
},
"related_extended_data": {
"cleanup_deadman_duration": "string",
"should_trigger_deadman": False,
},
"relative_timeframe": "string",
},
},
"less_than_usual": {
"parameters": {
"threshold": 0,
"timeframe": "string",
"cardinality_fields": ["string"],
"group_bies": ["string"],
"ignore_infinity": False,
"metric_alert_parameters": {
"arithmetic_operator": "string",
"metric_field": "string",
"metric_source": "string",
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"sample_threshold_percentage": 0,
"swap_null_values": False,
},
"metric_alert_promql_parameters": {
"promql_text": "string",
"sample_threshold_percentage": 0,
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"swap_null_values": False,
},
"related_extended_data": {
"cleanup_deadman_duration": "string",
"should_trigger_deadman": False,
},
"relative_timeframe": "string",
},
},
"more_than": {
"parameters": {
"threshold": 0,
"timeframe": "string",
"cardinality_fields": ["string"],
"group_bies": ["string"],
"ignore_infinity": False,
"metric_alert_parameters": {
"arithmetic_operator": "string",
"metric_field": "string",
"metric_source": "string",
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"sample_threshold_percentage": 0,
"swap_null_values": False,
},
"metric_alert_promql_parameters": {
"promql_text": "string",
"sample_threshold_percentage": 0,
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"swap_null_values": False,
},
"related_extended_data": {
"cleanup_deadman_duration": "string",
"should_trigger_deadman": False,
},
"relative_timeframe": "string",
},
"evaluation_window": "string",
},
"more_than_usual": {
"parameters": {
"threshold": 0,
"timeframe": "string",
"cardinality_fields": ["string"],
"group_bies": ["string"],
"ignore_infinity": False,
"metric_alert_parameters": {
"arithmetic_operator": "string",
"metric_field": "string",
"metric_source": "string",
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"sample_threshold_percentage": 0,
"swap_null_values": False,
},
"metric_alert_promql_parameters": {
"promql_text": "string",
"sample_threshold_percentage": 0,
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"swap_null_values": False,
},
"related_extended_data": {
"cleanup_deadman_duration": "string",
"should_trigger_deadman": False,
},
"relative_timeframe": "string",
},
},
"new_value": {
"parameters": {
"threshold": 0,
"timeframe": "string",
"cardinality_fields": ["string"],
"group_bies": ["string"],
"ignore_infinity": False,
"metric_alert_parameters": {
"arithmetic_operator": "string",
"metric_field": "string",
"metric_source": "string",
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"sample_threshold_percentage": 0,
"swap_null_values": False,
},
"metric_alert_promql_parameters": {
"promql_text": "string",
"sample_threshold_percentage": 0,
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"swap_null_values": False,
},
"related_extended_data": {
"cleanup_deadman_duration": "string",
"should_trigger_deadman": False,
},
"relative_timeframe": "string",
},
},
"unique_count": {
"parameters": {
"threshold": 0,
"timeframe": "string",
"cardinality_fields": ["string"],
"group_bies": ["string"],
"ignore_infinity": False,
"metric_alert_parameters": {
"arithmetic_operator": "string",
"metric_field": "string",
"metric_source": "string",
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"sample_threshold_percentage": 0,
"swap_null_values": False,
},
"metric_alert_promql_parameters": {
"promql_text": "string",
"sample_threshold_percentage": 0,
"arithmetic_operator_modifier": 0,
"non_null_percentage": 0,
"swap_null_values": False,
},
"related_extended_data": {
"cleanup_deadman_duration": "string",
"should_trigger_deadman": False,
},
"relative_timeframe": "string",
},
},
},
severity="string",
is_active=False,
instance_id="string",
expiration={
"day": 0,
"month": 0,
"year": 0,
},
incident_settings={
"notify_on": "string",
"retriggering_period_seconds": 0,
"use_as_notification_settings": False,
},
active_when={
"timeframes": [{
"days_of_weeks": ["string"],
"range": {
"end": {
"hours": 0,
"minutes": 0,
"seconds": 0,
},
"start": {
"hours": 0,
"minutes": 0,
"seconds": 0,
},
},
}],
},
endpoint_type="string",
logs_alert_id="string",
meta_labels=[{
"key": "string",
"value": "string",
}],
meta_labels_strings=["string"],
name="string",
notification_groups=[{
"group_by_fields": ["string"],
"notifications": [{
"integration_id": 0,
"notify_on": "string",
"recipients": {
"emails": ["string"],
},
"retriggering_period_seconds": 0,
}],
}],
notification_payload_filters=["string"],
region="string",
description="string")
const logsAlertResource = new ibm.LogsAlert("logsAlertResource", {
filters: {
alias: "string",
filterType: "string",
metadata: {
applications: ["string"],
subsystems: ["string"],
},
ratioAlerts: [{
alias: "string",
applications: ["string"],
groupBies: ["string"],
severities: ["string"],
subsystems: ["string"],
text: "string",
}],
severities: ["string"],
text: "string",
},
condition: {
flow: {
enforceSuppression: false,
parameters: {
threshold: 0,
timeframe: "string",
cardinalityFields: ["string"],
groupBies: ["string"],
ignoreInfinity: false,
metricAlertParameters: {
arithmeticOperator: "string",
metricField: "string",
metricSource: "string",
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
sampleThresholdPercentage: 0,
swapNullValues: false,
},
metricAlertPromqlParameters: {
promqlText: "string",
sampleThresholdPercentage: 0,
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
swapNullValues: false,
},
relatedExtendedData: {
cleanupDeadmanDuration: "string",
shouldTriggerDeadman: false,
},
relativeTimeframe: "string",
},
stages: [{
groups: [{
alerts: {
op: "string",
values: [{
id: "string",
not: false,
}],
},
nextOp: "string",
}],
timeframe: {
ms: 0,
},
}],
},
immediate: {},
lessThan: {
parameters: {
threshold: 0,
timeframe: "string",
cardinalityFields: ["string"],
groupBies: ["string"],
ignoreInfinity: false,
metricAlertParameters: {
arithmeticOperator: "string",
metricField: "string",
metricSource: "string",
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
sampleThresholdPercentage: 0,
swapNullValues: false,
},
metricAlertPromqlParameters: {
promqlText: "string",
sampleThresholdPercentage: 0,
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
swapNullValues: false,
},
relatedExtendedData: {
cleanupDeadmanDuration: "string",
shouldTriggerDeadman: false,
},
relativeTimeframe: "string",
},
},
lessThanUsual: {
parameters: {
threshold: 0,
timeframe: "string",
cardinalityFields: ["string"],
groupBies: ["string"],
ignoreInfinity: false,
metricAlertParameters: {
arithmeticOperator: "string",
metricField: "string",
metricSource: "string",
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
sampleThresholdPercentage: 0,
swapNullValues: false,
},
metricAlertPromqlParameters: {
promqlText: "string",
sampleThresholdPercentage: 0,
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
swapNullValues: false,
},
relatedExtendedData: {
cleanupDeadmanDuration: "string",
shouldTriggerDeadman: false,
},
relativeTimeframe: "string",
},
},
moreThan: {
parameters: {
threshold: 0,
timeframe: "string",
cardinalityFields: ["string"],
groupBies: ["string"],
ignoreInfinity: false,
metricAlertParameters: {
arithmeticOperator: "string",
metricField: "string",
metricSource: "string",
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
sampleThresholdPercentage: 0,
swapNullValues: false,
},
metricAlertPromqlParameters: {
promqlText: "string",
sampleThresholdPercentage: 0,
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
swapNullValues: false,
},
relatedExtendedData: {
cleanupDeadmanDuration: "string",
shouldTriggerDeadman: false,
},
relativeTimeframe: "string",
},
evaluationWindow: "string",
},
moreThanUsual: {
parameters: {
threshold: 0,
timeframe: "string",
cardinalityFields: ["string"],
groupBies: ["string"],
ignoreInfinity: false,
metricAlertParameters: {
arithmeticOperator: "string",
metricField: "string",
metricSource: "string",
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
sampleThresholdPercentage: 0,
swapNullValues: false,
},
metricAlertPromqlParameters: {
promqlText: "string",
sampleThresholdPercentage: 0,
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
swapNullValues: false,
},
relatedExtendedData: {
cleanupDeadmanDuration: "string",
shouldTriggerDeadman: false,
},
relativeTimeframe: "string",
},
},
newValue: {
parameters: {
threshold: 0,
timeframe: "string",
cardinalityFields: ["string"],
groupBies: ["string"],
ignoreInfinity: false,
metricAlertParameters: {
arithmeticOperator: "string",
metricField: "string",
metricSource: "string",
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
sampleThresholdPercentage: 0,
swapNullValues: false,
},
metricAlertPromqlParameters: {
promqlText: "string",
sampleThresholdPercentage: 0,
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
swapNullValues: false,
},
relatedExtendedData: {
cleanupDeadmanDuration: "string",
shouldTriggerDeadman: false,
},
relativeTimeframe: "string",
},
},
uniqueCount: {
parameters: {
threshold: 0,
timeframe: "string",
cardinalityFields: ["string"],
groupBies: ["string"],
ignoreInfinity: false,
metricAlertParameters: {
arithmeticOperator: "string",
metricField: "string",
metricSource: "string",
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
sampleThresholdPercentage: 0,
swapNullValues: false,
},
metricAlertPromqlParameters: {
promqlText: "string",
sampleThresholdPercentage: 0,
arithmeticOperatorModifier: 0,
nonNullPercentage: 0,
swapNullValues: false,
},
relatedExtendedData: {
cleanupDeadmanDuration: "string",
shouldTriggerDeadman: false,
},
relativeTimeframe: "string",
},
},
},
severity: "string",
isActive: false,
instanceId: "string",
expiration: {
day: 0,
month: 0,
year: 0,
},
incidentSettings: {
notifyOn: "string",
retriggeringPeriodSeconds: 0,
useAsNotificationSettings: false,
},
activeWhen: {
timeframes: [{
daysOfWeeks: ["string"],
range: {
end: {
hours: 0,
minutes: 0,
seconds: 0,
},
start: {
hours: 0,
minutes: 0,
seconds: 0,
},
},
}],
},
endpointType: "string",
logsAlertId: "string",
metaLabels: [{
key: "string",
value: "string",
}],
metaLabelsStrings: ["string"],
name: "string",
notificationGroups: [{
groupByFields: ["string"],
notifications: [{
integrationId: 0,
notifyOn: "string",
recipients: {
emails: ["string"],
},
retriggeringPeriodSeconds: 0,
}],
}],
notificationPayloadFilters: ["string"],
region: "string",
description: "string",
});
type: ibm:LogsAlert
properties:
activeWhen:
timeframes:
- daysOfWeeks:
- string
range:
end:
hours: 0
minutes: 0
seconds: 0
start:
hours: 0
minutes: 0
seconds: 0
condition:
flow:
enforceSuppression: false
parameters:
cardinalityFields:
- string
groupBies:
- string
ignoreInfinity: false
metricAlertParameters:
arithmeticOperator: string
arithmeticOperatorModifier: 0
metricField: string
metricSource: string
nonNullPercentage: 0
sampleThresholdPercentage: 0
swapNullValues: false
metricAlertPromqlParameters:
arithmeticOperatorModifier: 0
nonNullPercentage: 0
promqlText: string
sampleThresholdPercentage: 0
swapNullValues: false
relatedExtendedData:
cleanupDeadmanDuration: string
shouldTriggerDeadman: false
relativeTimeframe: string
threshold: 0
timeframe: string
stages:
- groups:
- alerts:
op: string
values:
- id: string
not: false
nextOp: string
timeframe:
ms: 0
immediate: {}
lessThan:
parameters:
cardinalityFields:
- string
groupBies:
- string
ignoreInfinity: false
metricAlertParameters:
arithmeticOperator: string
arithmeticOperatorModifier: 0
metricField: string
metricSource: string
nonNullPercentage: 0
sampleThresholdPercentage: 0
swapNullValues: false
metricAlertPromqlParameters:
arithmeticOperatorModifier: 0
nonNullPercentage: 0
promqlText: string
sampleThresholdPercentage: 0
swapNullValues: false
relatedExtendedData:
cleanupDeadmanDuration: string
shouldTriggerDeadman: false
relativeTimeframe: string
threshold: 0
timeframe: string
lessThanUsual:
parameters:
cardinalityFields:
- string
groupBies:
- string
ignoreInfinity: false
metricAlertParameters:
arithmeticOperator: string
arithmeticOperatorModifier: 0
metricField: string
metricSource: string
nonNullPercentage: 0
sampleThresholdPercentage: 0
swapNullValues: false
metricAlertPromqlParameters:
arithmeticOperatorModifier: 0
nonNullPercentage: 0
promqlText: string
sampleThresholdPercentage: 0
swapNullValues: false
relatedExtendedData:
cleanupDeadmanDuration: string
shouldTriggerDeadman: false
relativeTimeframe: string
threshold: 0
timeframe: string
moreThan:
evaluationWindow: string
parameters:
cardinalityFields:
- string
groupBies:
- string
ignoreInfinity: false
metricAlertParameters:
arithmeticOperator: string
arithmeticOperatorModifier: 0
metricField: string
metricSource: string
nonNullPercentage: 0
sampleThresholdPercentage: 0
swapNullValues: false
metricAlertPromqlParameters:
arithmeticOperatorModifier: 0
nonNullPercentage: 0
promqlText: string
sampleThresholdPercentage: 0
swapNullValues: false
relatedExtendedData:
cleanupDeadmanDuration: string
shouldTriggerDeadman: false
relativeTimeframe: string
threshold: 0
timeframe: string
moreThanUsual:
parameters:
cardinalityFields:
- string
groupBies:
- string
ignoreInfinity: false
metricAlertParameters:
arithmeticOperator: string
arithmeticOperatorModifier: 0
metricField: string
metricSource: string
nonNullPercentage: 0
sampleThresholdPercentage: 0
swapNullValues: false
metricAlertPromqlParameters:
arithmeticOperatorModifier: 0
nonNullPercentage: 0
promqlText: string
sampleThresholdPercentage: 0
swapNullValues: false
relatedExtendedData:
cleanupDeadmanDuration: string
shouldTriggerDeadman: false
relativeTimeframe: string
threshold: 0
timeframe: string
newValue:
parameters:
cardinalityFields:
- string
groupBies:
- string
ignoreInfinity: false
metricAlertParameters:
arithmeticOperator: string
arithmeticOperatorModifier: 0
metricField: string
metricSource: string
nonNullPercentage: 0
sampleThresholdPercentage: 0
swapNullValues: false
metricAlertPromqlParameters:
arithmeticOperatorModifier: 0
nonNullPercentage: 0
promqlText: string
sampleThresholdPercentage: 0
swapNullValues: false
relatedExtendedData:
cleanupDeadmanDuration: string
shouldTriggerDeadman: false
relativeTimeframe: string
threshold: 0
timeframe: string
uniqueCount:
parameters:
cardinalityFields:
- string
groupBies:
- string
ignoreInfinity: false
metricAlertParameters:
arithmeticOperator: string
arithmeticOperatorModifier: 0
metricField: string
metricSource: string
nonNullPercentage: 0
sampleThresholdPercentage: 0
swapNullValues: false
metricAlertPromqlParameters:
arithmeticOperatorModifier: 0
nonNullPercentage: 0
promqlText: string
sampleThresholdPercentage: 0
swapNullValues: false
relatedExtendedData:
cleanupDeadmanDuration: string
shouldTriggerDeadman: false
relativeTimeframe: string
threshold: 0
timeframe: string
description: string
endpointType: string
expiration:
day: 0
month: 0
year: 0
filters:
alias: string
filterType: string
metadata:
applications:
- string
subsystems:
- string
ratioAlerts:
- alias: string
applications:
- string
groupBies:
- string
severities:
- string
subsystems:
- string
text: string
severities:
- string
text: string
incidentSettings:
notifyOn: string
retriggeringPeriodSeconds: 0
useAsNotificationSettings: false
instanceId: string
isActive: false
logsAlertId: string
metaLabels:
- key: string
value: string
metaLabelsStrings:
- string
name: string
notificationGroups:
- groupByFields:
- string
notifications:
- integrationId: 0
notifyOn: string
recipients:
emails:
- string
retriggeringPeriodSeconds: 0
notificationPayloadFilters:
- string
region: string
severity: string
LogsAlert 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 LogsAlert resource accepts the following input properties:
- Condition
Logs
Alert Condition - Alert condition. Nested schema for condition:
- Filters
Logs
Alert Filters - Alert filters. Nested schema for filters:
- Instance
Id string - Cloud Logs Instance GUID.
- Is
Active bool - Alert is active.
- Severity string
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- Active
When LogsAlert Active When - When should the alert be active. Nested schema for active_when:
- Description string
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - Expiration
Logs
Alert Expiration - Alert expiration date. Nested schema for expiration:
- Incident
Settings LogsAlert Incident Settings - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- Logs
Alert stringId - The unique identifier of the logs_alert resource.
- Meta
Labels List<LogsAlert Meta Label> - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- Meta
Labels List<string>Strings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Name string
- Alert 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
- Notification
Groups List<LogsAlert Notification Group> - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- Notification
Payload List<string>Filters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Region string
- Cloud Logs Instance Region.
- Condition
Logs
Alert Condition Args - Alert condition. Nested schema for condition:
- Filters
Logs
Alert Filters Args - Alert filters. Nested schema for filters:
- Instance
Id string - Cloud Logs Instance GUID.
- Is
Active bool - Alert is active.
- Severity string
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- Active
When LogsAlert Active When Args - When should the alert be active. Nested schema for active_when:
- Description string
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - Expiration
Logs
Alert Expiration Args - Alert expiration date. Nested schema for expiration:
- Incident
Settings LogsAlert Incident Settings Args - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- Logs
Alert stringId - The unique identifier of the logs_alert resource.
- Meta
Labels []LogsAlert Meta Label Args - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- Meta
Labels []stringStrings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Name string
- Alert 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
- Notification
Groups []LogsAlert Notification Group Args - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- Notification
Payload []stringFilters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Region string
- Cloud Logs Instance Region.
- condition
Logs
Alert Condition - Alert condition. Nested schema for condition:
- filters
Logs
Alert Filters - Alert filters. Nested schema for filters:
- instance
Id String - Cloud Logs Instance GUID.
- is
Active Boolean - Alert is active.
- severity String
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- active
When LogsAlert Active When - When should the alert be active. Nested schema for active_when:
- description String
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - expiration
Logs
Alert Expiration - Alert expiration date. Nested schema for expiration:
- incident
Settings LogsAlert Incident Settings - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- logs
Alert StringId - The unique identifier of the logs_alert resource.
- meta
Labels List<LogsAlert Meta Label> - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- meta
Labels List<String>Strings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- name String
- Alert 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
- notification
Groups List<LogsAlert Notification Group> - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- notification
Payload List<String>Filters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- region String
- Cloud Logs Instance Region.
- condition
Logs
Alert Condition - Alert condition. Nested schema for condition:
- filters
Logs
Alert Filters - Alert filters. Nested schema for filters:
- instance
Id string - Cloud Logs Instance GUID.
- is
Active boolean - Alert is active.
- severity string
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- active
When LogsAlert Active When - When should the alert be active. Nested schema for active_when:
- description string
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - expiration
Logs
Alert Expiration - Alert expiration date. Nested schema for expiration:
- incident
Settings LogsAlert Incident Settings - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- logs
Alert stringId - The unique identifier of the logs_alert resource.
- meta
Labels LogsAlert Meta Label[] - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- meta
Labels string[]Strings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- name string
- Alert 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
- notification
Groups LogsAlert Notification Group[] - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- notification
Payload string[]Filters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- region string
- Cloud Logs Instance Region.
- condition
Logs
Alert Condition Args - Alert condition. Nested schema for condition:
- filters
Logs
Alert Filters Args - Alert filters. Nested schema for filters:
- instance_
id str - Cloud Logs Instance GUID.
- is_
active bool - Alert is active.
- severity str
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- active_
when LogsAlert Active When Args - When should the alert be active. Nested schema for active_when:
- description str
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- endpoint_
type str - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - expiration
Logs
Alert Expiration Args - Alert expiration date. Nested schema for expiration:
- incident_
settings LogsAlert Incident Settings Args - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- logs_
alert_ strid - The unique identifier of the logs_alert resource.
- meta_
labels Sequence[LogsAlert Meta Label Args] - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- meta_
labels_ Sequence[str]strings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- name str
- Alert 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
- notification_
groups Sequence[LogsAlert Notification Group Args] - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- notification_
payload_ Sequence[str]filters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- region str
- Cloud Logs Instance Region.
- condition Property Map
- Alert condition. Nested schema for condition:
- filters Property Map
- Alert filters. Nested schema for filters:
- instance
Id String - Cloud Logs Instance GUID.
- is
Active Boolean - Alert is active.
- severity String
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- active
When Property Map - When should the alert be active. Nested schema for active_when:
- description String
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - expiration Property Map
- Alert expiration date. Nested schema for expiration:
- incident
Settings Property Map - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- logs
Alert StringId - The unique identifier of the logs_alert resource.
- meta
Labels List<Property Map> - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- meta
Labels List<String>Strings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- name String
- Alert 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
- notification
Groups List<Property Map> - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- notification
Payload List<String>Filters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- region String
- Cloud Logs Instance Region.
Outputs
All input properties are implicitly available as output properties. Additionally, the LogsAlert resource produces the following output properties:
- Alert
Id string - The unique identifier of the logs alert.
- Id string
- The provider-assigned unique ID for this managed resource.
- Unique
Identifier string - (String) Alert unique identifier.
- 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
- Alert
Id string - The unique identifier of the logs alert.
- Id string
- The provider-assigned unique ID for this managed resource.
- Unique
Identifier string - (String) Alert unique identifier.
- 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
- alert
Id String - The unique identifier of the logs alert.
- id String
- The provider-assigned unique ID for this managed resource.
- unique
Identifier String - (String) Alert unique identifier.
- 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
- alert
Id string - The unique identifier of the logs alert.
- id string
- The provider-assigned unique ID for this managed resource.
- unique
Identifier string - (String) Alert unique identifier.
- 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
- alert_
id str - The unique identifier of the logs alert.
- id str
- The provider-assigned unique ID for this managed resource.
- unique_
identifier str - (String) Alert unique identifier.
- 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
- alert
Id String - The unique identifier of the logs alert.
- id String
- The provider-assigned unique ID for this managed resource.
- unique
Identifier String - (String) Alert unique identifier.
- 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
Look up Existing LogsAlert Resource
Get an existing LogsAlert 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?: LogsAlertState, opts?: CustomResourceOptions): LogsAlert
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
active_when: Optional[LogsAlertActiveWhenArgs] = None,
alert_id: Optional[str] = None,
condition: Optional[LogsAlertConditionArgs] = None,
description: Optional[str] = None,
endpoint_type: Optional[str] = None,
expiration: Optional[LogsAlertExpirationArgs] = None,
filters: Optional[LogsAlertFiltersArgs] = None,
incident_settings: Optional[LogsAlertIncidentSettingsArgs] = None,
instance_id: Optional[str] = None,
is_active: Optional[bool] = None,
logs_alert_id: Optional[str] = None,
meta_labels: Optional[Sequence[LogsAlertMetaLabelArgs]] = None,
meta_labels_strings: Optional[Sequence[str]] = None,
name: Optional[str] = None,
notification_groups: Optional[Sequence[LogsAlertNotificationGroupArgs]] = None,
notification_payload_filters: Optional[Sequence[str]] = None,
region: Optional[str] = None,
severity: Optional[str] = None,
unique_identifier: Optional[str] = None) -> LogsAlert
func GetLogsAlert(ctx *Context, name string, id IDInput, state *LogsAlertState, opts ...ResourceOption) (*LogsAlert, error)
public static LogsAlert Get(string name, Input<string> id, LogsAlertState? state, CustomResourceOptions? opts = null)
public static LogsAlert get(String name, Output<String> id, LogsAlertState state, CustomResourceOptions options)
resources: _: type: ibm:LogsAlert 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.
- Active
When LogsAlert Active When - When should the alert be active. Nested schema for active_when:
- Alert
Id string - The unique identifier of the logs alert.
- Condition
Logs
Alert Condition - Alert condition. Nested schema for condition:
- Description string
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - Expiration
Logs
Alert Expiration - Alert expiration date. Nested schema for expiration:
- Filters
Logs
Alert Filters - Alert filters. Nested schema for filters:
- Incident
Settings LogsAlert Incident Settings - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- Instance
Id string - Cloud Logs Instance GUID.
- Is
Active bool - Alert is active.
- Logs
Alert stringId - The unique identifier of the logs_alert resource.
- Meta
Labels List<LogsAlert Meta Label> - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- Meta
Labels List<string>Strings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Name string
- Alert 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
- Notification
Groups List<LogsAlert Notification Group> - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- Notification
Payload List<string>Filters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Region string
- Cloud Logs Instance Region.
- Severity string
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- Unique
Identifier string - (String) Alert unique identifier.
- 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
- Active
When LogsAlert Active When Args - When should the alert be active. Nested schema for active_when:
- Alert
Id string - The unique identifier of the logs alert.
- Condition
Logs
Alert Condition Args - Alert condition. Nested schema for condition:
- Description string
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - Expiration
Logs
Alert Expiration Args - Alert expiration date. Nested schema for expiration:
- Filters
Logs
Alert Filters Args - Alert filters. Nested schema for filters:
- Incident
Settings LogsAlert Incident Settings Args - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- Instance
Id string - Cloud Logs Instance GUID.
- Is
Active bool - Alert is active.
- Logs
Alert stringId - The unique identifier of the logs_alert resource.
- Meta
Labels []LogsAlert Meta Label Args - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- Meta
Labels []stringStrings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Name string
- Alert 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
- Notification
Groups []LogsAlert Notification Group Args - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- Notification
Payload []stringFilters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Region string
- Cloud Logs Instance Region.
- Severity string
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- Unique
Identifier string - (String) Alert unique identifier.
- 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
- active
When LogsAlert Active When - When should the alert be active. Nested schema for active_when:
- alert
Id String - The unique identifier of the logs alert.
- condition
Logs
Alert Condition - Alert condition. Nested schema for condition:
- description String
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - expiration
Logs
Alert Expiration - Alert expiration date. Nested schema for expiration:
- filters
Logs
Alert Filters - Alert filters. Nested schema for filters:
- incident
Settings LogsAlert Incident Settings - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- instance
Id String - Cloud Logs Instance GUID.
- is
Active Boolean - Alert is active.
- logs
Alert StringId - The unique identifier of the logs_alert resource.
- meta
Labels List<LogsAlert Meta Label> - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- meta
Labels List<String>Strings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- name String
- Alert 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
- notification
Groups List<LogsAlert Notification Group> - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- notification
Payload List<String>Filters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- region String
- Cloud Logs Instance Region.
- severity String
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- unique
Identifier String - (String) Alert unique identifier.
- 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
- active
When LogsAlert Active When - When should the alert be active. Nested schema for active_when:
- alert
Id string - The unique identifier of the logs alert.
- condition
Logs
Alert Condition - Alert condition. Nested schema for condition:
- description string
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - expiration
Logs
Alert Expiration - Alert expiration date. Nested schema for expiration:
- filters
Logs
Alert Filters - Alert filters. Nested schema for filters:
- incident
Settings LogsAlert Incident Settings - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- instance
Id string - Cloud Logs Instance GUID.
- is
Active boolean - Alert is active.
- logs
Alert stringId - The unique identifier of the logs_alert resource.
- meta
Labels LogsAlert Meta Label[] - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- meta
Labels string[]Strings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- name string
- Alert 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
- notification
Groups LogsAlert Notification Group[] - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- notification
Payload string[]Filters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- region string
- Cloud Logs Instance Region.
- severity string
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- unique
Identifier string - (String) Alert unique identifier.
- 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
- active_
when LogsAlert Active When Args - When should the alert be active. Nested schema for active_when:
- alert_
id str - The unique identifier of the logs alert.
- condition
Logs
Alert Condition Args - Alert condition. Nested schema for condition:
- description str
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- endpoint_
type str - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - expiration
Logs
Alert Expiration Args - Alert expiration date. Nested schema for expiration:
- filters
Logs
Alert Filters Args - Alert filters. Nested schema for filters:
- incident_
settings LogsAlert Incident Settings Args - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- instance_
id str - Cloud Logs Instance GUID.
- is_
active bool - Alert is active.
- logs_
alert_ strid - The unique identifier of the logs_alert resource.
- meta_
labels Sequence[LogsAlert Meta Label Args] - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- meta_
labels_ Sequence[str]strings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- name str
- Alert 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
- notification_
groups Sequence[LogsAlert Notification Group Args] - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- notification_
payload_ Sequence[str]filters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- region str
- Cloud Logs Instance Region.
- severity str
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- unique_
identifier str - (String) Alert unique identifier.
- 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
- active
When Property Map - When should the alert be active. Nested schema for active_when:
- alert
Id String - The unique identifier of the logs alert.
- condition Property Map
- Alert condition. Nested schema for condition:
- description String
- Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - expiration Property Map
- Alert expiration date. Nested schema for expiration:
- filters Property Map
- Alert filters. Nested schema for filters:
- incident
Settings Property Map - Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- instance
Id String - Cloud Logs Instance GUID.
- is
Active Boolean - Alert is active.
- logs
Alert StringId - The unique identifier of the logs_alert resource.
- meta
Labels List<Property Map> - The Meta labels to add to the alert.
- Constraints: The maximum length is
200
items. The minimum length is0
items. Nested schema for meta_labels:
- Constraints: The maximum length is
- meta
Labels List<String>Strings - The Meta labels to add to the alert as string with ':' separator.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- name String
- Alert 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
- notification
Groups List<Property Map> - Alert notification groups.
- Constraints: The maximum length is
10
items. The minimum length is1
item. Nested schema for notification_groups:
- Constraints: The maximum length is
- notification
Payload List<String>Filters - JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- region String
- Cloud Logs Instance Region.
- severity String
- Alert severity.
- Constraints: Allowable values are:
info_or_unspecified
,warning
,critical
,error
.
- Constraints: Allowable values are:
- unique
Identifier String - (String) Alert unique identifier.
- 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
Supporting Types
LogsAlertActiveWhen, LogsAlertActiveWhenArgs
- Timeframes
List<Logs
Alert Active When Timeframe> - Activity timeframes of the alert.
- Constraints: The maximum length is
30
items. The minimum length is1
item. Nested schema for timeframes:
- Constraints: The maximum length is
- Timeframes
[]Logs
Alert Active When Timeframe - Activity timeframes of the alert.
- Constraints: The maximum length is
30
items. The minimum length is1
item. Nested schema for timeframes:
- Constraints: The maximum length is
- timeframes
List<Logs
Alert Active When Timeframe> - Activity timeframes of the alert.
- Constraints: The maximum length is
30
items. The minimum length is1
item. Nested schema for timeframes:
- Constraints: The maximum length is
- timeframes
Logs
Alert Active When Timeframe[] - Activity timeframes of the alert.
- Constraints: The maximum length is
30
items. The minimum length is1
item. Nested schema for timeframes:
- Constraints: The maximum length is
- timeframes
Sequence[Logs
Alert Active When Timeframe] - Activity timeframes of the alert.
- Constraints: The maximum length is
30
items. The minimum length is1
item. Nested schema for timeframes:
- Constraints: The maximum length is
- timeframes List<Property Map>
- Activity timeframes of the alert.
- Constraints: The maximum length is
30
items. The minimum length is1
item. Nested schema for timeframes:
- Constraints: The maximum length is
LogsAlertActiveWhenTimeframe, LogsAlertActiveWhenTimeframeArgs
- Days
Of List<string>Weeks - Days of the week for activity.
- Constraints: Allowable list items are:
monday_or_unspecified
,tuesday
,wednesday
,thursday
,friday
,saturday
,sunday
. The maximum length is30
items. The minimum length is1
item.
- Constraints: Allowable list items are:
- Range
Logs
Alert Active When Timeframe Range - Time range in the day of the week. Nested schema for range:
- Days
Of []stringWeeks - Days of the week for activity.
- Constraints: Allowable list items are:
monday_or_unspecified
,tuesday
,wednesday
,thursday
,friday
,saturday
,sunday
. The maximum length is30
items. The minimum length is1
item.
- Constraints: Allowable list items are:
- Range
Logs
Alert Active When Timeframe Range - Time range in the day of the week. Nested schema for range:
- days
Of List<String>Weeks - Days of the week for activity.
- Constraints: Allowable list items are:
monday_or_unspecified
,tuesday
,wednesday
,thursday
,friday
,saturday
,sunday
. The maximum length is30
items. The minimum length is1
item.
- Constraints: Allowable list items are:
- range
Logs
Alert Active When Timeframe Range - Time range in the day of the week. Nested schema for range:
- days
Of string[]Weeks - Days of the week for activity.
- Constraints: Allowable list items are:
monday_or_unspecified
,tuesday
,wednesday
,thursday
,friday
,saturday
,sunday
. The maximum length is30
items. The minimum length is1
item.
- Constraints: Allowable list items are:
- range
Logs
Alert Active When Timeframe Range - Time range in the day of the week. Nested schema for range:
- days_
of_ Sequence[str]weeks - Days of the week for activity.
- Constraints: Allowable list items are:
monday_or_unspecified
,tuesday
,wednesday
,thursday
,friday
,saturday
,sunday
. The maximum length is30
items. The minimum length is1
item.
- Constraints: Allowable list items are:
- range
Logs
Alert Active When Timeframe Range - Time range in the day of the week. Nested schema for range:
- days
Of List<String>Weeks - Days of the week for activity.
- Constraints: Allowable list items are:
monday_or_unspecified
,tuesday
,wednesday
,thursday
,friday
,saturday
,sunday
. The maximum length is30
items. The minimum length is1
item.
- Constraints: Allowable list items are:
- range Property Map
- Time range in the day of the week. Nested schema for range:
LogsAlertActiveWhenTimeframeRange, LogsAlertActiveWhenTimeframeRangeArgs
- End
Logs
Alert Active When Timeframe Range End - Start time. Nested schema for end:
- Start
Logs
Alert Active When Timeframe Range Start - Start time. Nested schema for start:
- End
Logs
Alert Active When Timeframe Range End - Start time. Nested schema for end:
- Start
Logs
Alert Active When Timeframe Range Start - Start time. Nested schema for start:
- end
Logs
Alert Active When Timeframe Range End - Start time. Nested schema for end:
- start
Logs
Alert Active When Timeframe Range Start - Start time. Nested schema for start:
- end
Logs
Alert Active When Timeframe Range End - Start time. Nested schema for end:
- start
Logs
Alert Active When Timeframe Range Start - Start time. Nested schema for start:
- end
Logs
Alert Active When Timeframe Range End - Start time. Nested schema for end:
- start
Logs
Alert Active When Timeframe Range Start - Start time. Nested schema for start:
- end Property Map
- Start time. Nested schema for end:
- start Property Map
- Start time. Nested schema for start:
LogsAlertActiveWhenTimeframeRangeEnd, LogsAlertActiveWhenTimeframeRangeEndArgs
LogsAlertActiveWhenTimeframeRangeStart, LogsAlertActiveWhenTimeframeRangeStartArgs
LogsAlertCondition, LogsAlertConditionArgs
- Flow
Logs
Alert Condition Flow - Condition for flow alert. Nested schema for flow:
- Immediate
Logs
Alert Condition Immediate - Condition for immediate standard alert. Nested schema for immediate:
- Less
Than LogsAlert Condition Less Than - Condition for less than alert. Nested schema for less_than:
- Less
Than LogsUsual Alert Condition Less Than Usual - Condition for less than usual alert. Nested schema for less_than_usual:
- More
Than LogsAlert Condition More Than - Condition for more than alert. Nested schema for more_than:
- More
Than LogsUsual Alert Condition More Than Usual - Condition for more than usual alert. Nested schema for more_than_usual:
- New
Value LogsAlert Condition New Value - Condition for new value alert. Nested schema for new_value:
- Unique
Count LogsAlert Condition Unique Count - Condition for unique count alert. Nested schema for unique_count:
- Flow
Logs
Alert Condition Flow - Condition for flow alert. Nested schema for flow:
- Immediate
Logs
Alert Condition Immediate - Condition for immediate standard alert. Nested schema for immediate:
- Less
Than LogsAlert Condition Less Than - Condition for less than alert. Nested schema for less_than:
- Less
Than LogsUsual Alert Condition Less Than Usual - Condition for less than usual alert. Nested schema for less_than_usual:
- More
Than LogsAlert Condition More Than - Condition for more than alert. Nested schema for more_than:
- More
Than LogsUsual Alert Condition More Than Usual - Condition for more than usual alert. Nested schema for more_than_usual:
- New
Value LogsAlert Condition New Value - Condition for new value alert. Nested schema for new_value:
- Unique
Count LogsAlert Condition Unique Count - Condition for unique count alert. Nested schema for unique_count:
- flow
Logs
Alert Condition Flow - Condition for flow alert. Nested schema for flow:
- immediate
Logs
Alert Condition Immediate - Condition for immediate standard alert. Nested schema for immediate:
- less
Than LogsAlert Condition Less Than - Condition for less than alert. Nested schema for less_than:
- less
Than LogsUsual Alert Condition Less Than Usual - Condition for less than usual alert. Nested schema for less_than_usual:
- more
Than LogsAlert Condition More Than - Condition for more than alert. Nested schema for more_than:
- more
Than LogsUsual Alert Condition More Than Usual - Condition for more than usual alert. Nested schema for more_than_usual:
- new
Value LogsAlert Condition New Value - Condition for new value alert. Nested schema for new_value:
- unique
Count LogsAlert Condition Unique Count - Condition for unique count alert. Nested schema for unique_count:
- flow
Logs
Alert Condition Flow - Condition for flow alert. Nested schema for flow:
- immediate
Logs
Alert Condition Immediate - Condition for immediate standard alert. Nested schema for immediate:
- less
Than LogsAlert Condition Less Than - Condition for less than alert. Nested schema for less_than:
- less
Than LogsUsual Alert Condition Less Than Usual - Condition for less than usual alert. Nested schema for less_than_usual:
- more
Than LogsAlert Condition More Than - Condition for more than alert. Nested schema for more_than:
- more
Than LogsUsual Alert Condition More Than Usual - Condition for more than usual alert. Nested schema for more_than_usual:
- new
Value LogsAlert Condition New Value - Condition for new value alert. Nested schema for new_value:
- unique
Count LogsAlert Condition Unique Count - Condition for unique count alert. Nested schema for unique_count:
- flow
Logs
Alert Condition Flow - Condition for flow alert. Nested schema for flow:
- immediate
Logs
Alert Condition Immediate - Condition for immediate standard alert. Nested schema for immediate:
- less_
than LogsAlert Condition Less Than - Condition for less than alert. Nested schema for less_than:
- less_
than_ Logsusual Alert Condition Less Than Usual - Condition for less than usual alert. Nested schema for less_than_usual:
- more_
than LogsAlert Condition More Than - Condition for more than alert. Nested schema for more_than:
- more_
than_ Logsusual Alert Condition More Than Usual - Condition for more than usual alert. Nested schema for more_than_usual:
- new_
value LogsAlert Condition New Value - Condition for new value alert. Nested schema for new_value:
- unique_
count LogsAlert Condition Unique Count - Condition for unique count alert. Nested schema for unique_count:
- flow Property Map
- Condition for flow alert. Nested schema for flow:
- immediate Property Map
- Condition for immediate standard alert. Nested schema for immediate:
- less
Than Property Map - Condition for less than alert. Nested schema for less_than:
- less
Than Property MapUsual - Condition for less than usual alert. Nested schema for less_than_usual:
- more
Than Property Map - Condition for more than alert. Nested schema for more_than:
- more
Than Property MapUsual - Condition for more than usual alert. Nested schema for more_than_usual:
- new
Value Property Map - Condition for new value alert. Nested schema for new_value:
- unique
Count Property Map - Condition for unique count alert. Nested schema for unique_count:
LogsAlertConditionFlow, LogsAlertConditionFlowArgs
- Enforce
Suppression bool - Should suppression be enforced on the flow alert.
- Parameters
Logs
Alert Condition Flow Parameters - The Less than alert condition parameters. Nested schema for parameters:
- Stages
List<Logs
Alert Condition Flow Stage> - The Flow alert condition parameters.
- Constraints: The maximum length is
50
items. The minimum length is0
items. Nested schema for stages:
- Constraints: The maximum length is
- Enforce
Suppression bool - Should suppression be enforced on the flow alert.
- Parameters
Logs
Alert Condition Flow Parameters - The Less than alert condition parameters. Nested schema for parameters:
- Stages
[]Logs
Alert Condition Flow Stage - The Flow alert condition parameters.
- Constraints: The maximum length is
50
items. The minimum length is0
items. Nested schema for stages:
- Constraints: The maximum length is
- enforce
Suppression Boolean - Should suppression be enforced on the flow alert.
- parameters
Logs
Alert Condition Flow Parameters - The Less than alert condition parameters. Nested schema for parameters:
- stages
List<Logs
Alert Condition Flow Stage> - The Flow alert condition parameters.
- Constraints: The maximum length is
50
items. The minimum length is0
items. Nested schema for stages:
- Constraints: The maximum length is
- enforce
Suppression boolean - Should suppression be enforced on the flow alert.
- parameters
Logs
Alert Condition Flow Parameters - The Less than alert condition parameters. Nested schema for parameters:
- stages
Logs
Alert Condition Flow Stage[] - The Flow alert condition parameters.
- Constraints: The maximum length is
50
items. The minimum length is0
items. Nested schema for stages:
- Constraints: The maximum length is
- enforce_
suppression bool - Should suppression be enforced on the flow alert.
- parameters
Logs
Alert Condition Flow Parameters - The Less than alert condition parameters. Nested schema for parameters:
- stages
Sequence[Logs
Alert Condition Flow Stage] - The Flow alert condition parameters.
- Constraints: The maximum length is
50
items. The minimum length is0
items. Nested schema for stages:
- Constraints: The maximum length is
- enforce
Suppression Boolean - Should suppression be enforced on the flow alert.
- parameters Property Map
- The Less than alert condition parameters. Nested schema for parameters:
- stages List<Property Map>
- The Flow alert condition parameters.
- Constraints: The maximum length is
50
items. The minimum length is0
items. Nested schema for stages:
- Constraints: The maximum length is
LogsAlertConditionFlowParameters, LogsAlertConditionFlowParametersArgs
- Threshold double
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields List<string> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<string> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition Flow Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition Flow Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Flow Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields []string - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies []string - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition Flow Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition Flow Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Flow Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition Flow Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition Flow Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Flow Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- The threshold for the alert condition.
- timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields string[] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies string[] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition Flow Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition Flow Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Flow Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- The threshold for the alert condition.
- timeframe str
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality_
fields Sequence[str] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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_
bies Sequence[str] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore_
infinity bool - Should the evaluation ignore infinity value.
- metric_
alert_ Logsparameters Alert Condition Flow Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Logspromql_ parameters Alert Condition Flow Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Flow Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert Property MapParameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert Property MapPromql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Property Map
- Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
LogsAlertConditionFlowParametersMetricAlertParameters, LogsAlertConditionFlowParametersMetricAlertParametersArgs
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator doubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator float64Modifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator DoubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator numberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- arithmetic_
operator str - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric_
field str - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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_
source str - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic_
operator_ floatmodifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator NumberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionFlowParametersMetricAlertPromqlParameters, LogsAlertConditionFlowParametersMetricAlertPromqlParametersArgs
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator doubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator float64Modifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator DoubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator numberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- promql_
text str - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic_
operator_ floatmodifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator NumberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionFlowParametersRelatedExtendedData, LogsAlertConditionFlowParametersRelatedExtendedDataArgs
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
- cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger booleanDeadman - Should we trigger deadman.
- cleanup_
deadman_ strduration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should_
trigger_ booldeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
LogsAlertConditionFlowStage, LogsAlertConditionFlowStageArgs
- Groups
List<Logs
Alert Condition Flow Stage Group> - List of groups of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for groups:
- Constraints: The maximum length is
- Timeframe
Logs
Alert Condition Flow Stage Timeframe - Timeframe for the flow. Nested schema for timeframe:
- Groups
[]Logs
Alert Condition Flow Stage Group - List of groups of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for groups:
- Constraints: The maximum length is
- Timeframe
Logs
Alert Condition Flow Stage Timeframe - Timeframe for the flow. Nested schema for timeframe:
- groups
List<Logs
Alert Condition Flow Stage Group> - List of groups of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for groups:
- Constraints: The maximum length is
- timeframe
Logs
Alert Condition Flow Stage Timeframe - Timeframe for the flow. Nested schema for timeframe:
- groups
Logs
Alert Condition Flow Stage Group[] - List of groups of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for groups:
- Constraints: The maximum length is
- timeframe
Logs
Alert Condition Flow Stage Timeframe - Timeframe for the flow. Nested schema for timeframe:
- groups
Sequence[Logs
Alert Condition Flow Stage Group] - List of groups of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for groups:
- Constraints: The maximum length is
- timeframe
Logs
Alert Condition Flow Stage Timeframe - Timeframe for the flow. Nested schema for timeframe:
- groups List<Property Map>
- List of groups of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for groups:
- Constraints: The maximum length is
- timeframe Property Map
- Timeframe for the flow. Nested schema for timeframe:
LogsAlertConditionFlowStageGroup, LogsAlertConditionFlowStageGroupArgs
- Alerts
Logs
Alert Condition Flow Stage Group Alerts - List of alerts. Nested schema for alerts:
- Next
Op string - Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- Alerts
Logs
Alert Condition Flow Stage Group Alerts - List of alerts. Nested schema for alerts:
- Next
Op string - Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- alerts
Logs
Alert Condition Flow Stage Group Alerts - List of alerts. Nested schema for alerts:
- next
Op String - Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- alerts
Logs
Alert Condition Flow Stage Group Alerts - List of alerts. Nested schema for alerts:
- next
Op string - Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- alerts
Logs
Alert Condition Flow Stage Group Alerts - List of alerts. Nested schema for alerts:
- next_
op str - Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- alerts Property Map
- List of alerts. Nested schema for alerts:
- next
Op String - Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
LogsAlertConditionFlowStageGroupAlerts, LogsAlertConditionFlowStageGroupAlertsArgs
- Op string
- Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- Values
List<Logs
Alert Condition Flow Stage Group Alerts Value> - List of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for values:
- Constraints: The maximum length is
- Op string
- Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- Values
[]Logs
Alert Condition Flow Stage Group Alerts Value - List of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for values:
- Constraints: The maximum length is
- op String
- Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- values
List<Logs
Alert Condition Flow Stage Group Alerts Value> - List of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for values:
- Constraints: The maximum length is
- op string
- Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- values
Logs
Alert Condition Flow Stage Group Alerts Value[] - List of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for values:
- Constraints: The maximum length is
- op str
- Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- values
Sequence[Logs
Alert Condition Flow Stage Group Alerts Value] - List of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for values:
- Constraints: The maximum length is
- op String
- Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- values List<Property Map>
- List of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for values:
- Constraints: The maximum length is
LogsAlertConditionFlowStageGroupAlertsValue, LogsAlertConditionFlowStageGroupAlertsValueArgs
LogsAlertConditionFlowStageTimeframe, LogsAlertConditionFlowStageTimeframeArgs
- Ms double
- Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Ms float64
- Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- ms Double
- Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- ms number
- Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- ms float
- Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- ms Number
- Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
LogsAlertConditionLessThan, LogsAlertConditionLessThanArgs
- Parameters
Logs
Alert Condition Less Than Parameters - The Less than alert condition parameters. Nested schema for parameters:
- Parameters
Logs
Alert Condition Less Than Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition Less Than Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition Less Than Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition Less Than Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters Property Map
- The Less than alert condition parameters. Nested schema for parameters:
LogsAlertConditionLessThanParameters, LogsAlertConditionLessThanParametersArgs
- Threshold double
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields List<string> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<string> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition Less Than Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition Less Than Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Less Than Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields []string - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies []string - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition Less Than Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition Less Than Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Less Than Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition Less Than Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition Less Than Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Less Than Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- The threshold for the alert condition.
- timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields string[] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies string[] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition Less Than Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition Less Than Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Less Than Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- The threshold for the alert condition.
- timeframe str
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality_
fields Sequence[str] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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_
bies Sequence[str] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore_
infinity bool - Should the evaluation ignore infinity value.
- metric_
alert_ Logsparameters Alert Condition Less Than Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Logspromql_ parameters Alert Condition Less Than Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Less Than Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert Property MapParameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert Property MapPromql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Property Map
- Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
LogsAlertConditionLessThanParametersMetricAlertParameters, LogsAlertConditionLessThanParametersMetricAlertParametersArgs
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator doubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator float64Modifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator DoubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator numberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- arithmetic_
operator str - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric_
field str - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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_
source str - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic_
operator_ floatmodifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator NumberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionLessThanParametersMetricAlertPromqlParameters, LogsAlertConditionLessThanParametersMetricAlertPromqlParametersArgs
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator doubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator float64Modifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator DoubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator numberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- promql_
text str - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic_
operator_ floatmodifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator NumberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionLessThanParametersRelatedExtendedData, LogsAlertConditionLessThanParametersRelatedExtendedDataArgs
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
- cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger booleanDeadman - Should we trigger deadman.
- cleanup_
deadman_ strduration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should_
trigger_ booldeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
LogsAlertConditionLessThanUsual, LogsAlertConditionLessThanUsualArgs
- Parameters
Logs
Alert Condition Less Than Usual Parameters - The Less than alert condition parameters. Nested schema for parameters:
- Parameters
Logs
Alert Condition Less Than Usual Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition Less Than Usual Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition Less Than Usual Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition Less Than Usual Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters Property Map
- The Less than alert condition parameters. Nested schema for parameters:
LogsAlertConditionLessThanUsualParameters, LogsAlertConditionLessThanUsualParametersArgs
- Threshold double
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields List<string> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<string> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition Less Than Usual Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition Less Than Usual Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Less Than Usual Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields []string - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies []string - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition Less Than Usual Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition Less Than Usual Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Less Than Usual Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition Less Than Usual Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition Less Than Usual Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Less Than Usual Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- The threshold for the alert condition.
- timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields string[] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies string[] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition Less Than Usual Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition Less Than Usual Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Less Than Usual Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- The threshold for the alert condition.
- timeframe str
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality_
fields Sequence[str] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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_
bies Sequence[str] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore_
infinity bool - Should the evaluation ignore infinity value.
- metric_
alert_ Logsparameters Alert Condition Less Than Usual Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Logspromql_ parameters Alert Condition Less Than Usual Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Less Than Usual Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert Property MapParameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert Property MapPromql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Property Map
- Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
LogsAlertConditionLessThanUsualParametersMetricAlertParameters, LogsAlertConditionLessThanUsualParametersMetricAlertParametersArgs
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator doubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator float64Modifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator DoubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator numberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- arithmetic_
operator str - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric_
field str - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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_
source str - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic_
operator_ floatmodifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator NumberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionLessThanUsualParametersMetricAlertPromqlParameters, LogsAlertConditionLessThanUsualParametersMetricAlertPromqlParametersArgs
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator doubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator float64Modifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator DoubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator numberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- promql_
text str - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic_
operator_ floatmodifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator NumberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionLessThanUsualParametersRelatedExtendedData, LogsAlertConditionLessThanUsualParametersRelatedExtendedDataArgs
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
- cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger booleanDeadman - Should we trigger deadman.
- cleanup_
deadman_ strduration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should_
trigger_ booldeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
LogsAlertConditionMoreThan, LogsAlertConditionMoreThanArgs
- Parameters
Logs
Alert Condition More Than Parameters - The Less than alert condition parameters. Nested schema for parameters:
- Evaluation
Window string - The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- Parameters
Logs
Alert Condition More Than Parameters - The Less than alert condition parameters. Nested schema for parameters:
- Evaluation
Window string - The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- parameters
Logs
Alert Condition More Than Parameters - The Less than alert condition parameters. Nested schema for parameters:
- evaluation
Window String - The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- parameters
Logs
Alert Condition More Than Parameters - The Less than alert condition parameters. Nested schema for parameters:
- evaluation
Window string - The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- parameters
Logs
Alert Condition More Than Parameters - The Less than alert condition parameters. Nested schema for parameters:
- evaluation_
window str - The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- parameters Property Map
- The Less than alert condition parameters. Nested schema for parameters:
- evaluation
Window String - The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
LogsAlertConditionMoreThanParameters, LogsAlertConditionMoreThanParametersArgs
- Threshold double
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields List<string> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<string> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition More Than Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition More Than Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition More Than Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields []string - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies []string - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition More Than Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition More Than Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition More Than Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition More Than Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition More Than Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition More Than Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- The threshold for the alert condition.
- timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields string[] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies string[] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition More Than Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition More Than Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition More Than Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- The threshold for the alert condition.
- timeframe str
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality_
fields Sequence[str] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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_
bies Sequence[str] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore_
infinity bool - Should the evaluation ignore infinity value.
- metric_
alert_ Logsparameters Alert Condition More Than Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Logspromql_ parameters Alert Condition More Than Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition More Than Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert Property MapParameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert Property MapPromql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Property Map
- Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
LogsAlertConditionMoreThanParametersMetricAlertParameters, LogsAlertConditionMoreThanParametersMetricAlertParametersArgs
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator doubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator float64Modifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator DoubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator numberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- arithmetic_
operator str - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric_
field str - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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_
source str - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic_
operator_ floatmodifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator NumberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionMoreThanParametersMetricAlertPromqlParameters, LogsAlertConditionMoreThanParametersMetricAlertPromqlParametersArgs
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator doubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator float64Modifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator DoubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator numberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- promql_
text str - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic_
operator_ floatmodifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator NumberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionMoreThanParametersRelatedExtendedData, LogsAlertConditionMoreThanParametersRelatedExtendedDataArgs
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
- cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger booleanDeadman - Should we trigger deadman.
- cleanup_
deadman_ strduration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should_
trigger_ booldeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
LogsAlertConditionMoreThanUsual, LogsAlertConditionMoreThanUsualArgs
- Parameters
Logs
Alert Condition More Than Usual Parameters - The Less than alert condition parameters. Nested schema for parameters:
- Parameters
Logs
Alert Condition More Than Usual Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition More Than Usual Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition More Than Usual Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition More Than Usual Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters Property Map
- The Less than alert condition parameters. Nested schema for parameters:
LogsAlertConditionMoreThanUsualParameters, LogsAlertConditionMoreThanUsualParametersArgs
- Threshold double
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields List<string> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<string> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition More Than Usual Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition More Than Usual Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition More Than Usual Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields []string - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies []string - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition More Than Usual Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition More Than Usual Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition More Than Usual Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition More Than Usual Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition More Than Usual Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition More Than Usual Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- The threshold for the alert condition.
- timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields string[] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies string[] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition More Than Usual Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition More Than Usual Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition More Than Usual Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- The threshold for the alert condition.
- timeframe str
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality_
fields Sequence[str] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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_
bies Sequence[str] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore_
infinity bool - Should the evaluation ignore infinity value.
- metric_
alert_ Logsparameters Alert Condition More Than Usual Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Logspromql_ parameters Alert Condition More Than Usual Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition More Than Usual Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert Property MapParameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert Property MapPromql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Property Map
- Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
LogsAlertConditionMoreThanUsualParametersMetricAlertParameters, LogsAlertConditionMoreThanUsualParametersMetricAlertParametersArgs
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator doubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator float64Modifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator DoubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator numberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- arithmetic_
operator str - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric_
field str - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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_
source str - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic_
operator_ floatmodifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator NumberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionMoreThanUsualParametersMetricAlertPromqlParameters, LogsAlertConditionMoreThanUsualParametersMetricAlertPromqlParametersArgs
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator doubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator float64Modifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator DoubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator numberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- promql_
text str - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic_
operator_ floatmodifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator NumberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionMoreThanUsualParametersRelatedExtendedData, LogsAlertConditionMoreThanUsualParametersRelatedExtendedDataArgs
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
- cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger booleanDeadman - Should we trigger deadman.
- cleanup_
deadman_ strduration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should_
trigger_ booldeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
LogsAlertConditionNewValue, LogsAlertConditionNewValueArgs
- Parameters
Logs
Alert Condition New Value Parameters - The Less than alert condition parameters. Nested schema for parameters:
- Parameters
Logs
Alert Condition New Value Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition New Value Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition New Value Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition New Value Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters Property Map
- The Less than alert condition parameters. Nested schema for parameters:
LogsAlertConditionNewValueParameters, LogsAlertConditionNewValueParametersArgs
- Threshold double
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields List<string> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<string> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition New Value Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition New Value Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition New Value Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields []string - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies []string - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition New Value Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition New Value Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition New Value Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition New Value Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition New Value Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition New Value Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- The threshold for the alert condition.
- timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields string[] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies string[] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition New Value Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition New Value Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition New Value Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- The threshold for the alert condition.
- timeframe str
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality_
fields Sequence[str] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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_
bies Sequence[str] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore_
infinity bool - Should the evaluation ignore infinity value.
- metric_
alert_ Logsparameters Alert Condition New Value Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Logspromql_ parameters Alert Condition New Value Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition New Value Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert Property MapParameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert Property MapPromql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Property Map
- Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
LogsAlertConditionNewValueParametersMetricAlertParameters, LogsAlertConditionNewValueParametersMetricAlertParametersArgs
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator doubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator float64Modifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator DoubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator numberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- arithmetic_
operator str - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric_
field str - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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_
source str - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic_
operator_ floatmodifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator NumberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionNewValueParametersMetricAlertPromqlParameters, LogsAlertConditionNewValueParametersMetricAlertPromqlParametersArgs
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator doubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator float64Modifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator DoubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator numberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- promql_
text str - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic_
operator_ floatmodifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator NumberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionNewValueParametersRelatedExtendedData, LogsAlertConditionNewValueParametersRelatedExtendedDataArgs
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
- cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger booleanDeadman - Should we trigger deadman.
- cleanup_
deadman_ strduration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should_
trigger_ booldeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
LogsAlertConditionUniqueCount, LogsAlertConditionUniqueCountArgs
- Parameters
Logs
Alert Condition Unique Count Parameters - The Less than alert condition parameters. Nested schema for parameters:
- Parameters
Logs
Alert Condition Unique Count Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition Unique Count Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition Unique Count Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters
Logs
Alert Condition Unique Count Parameters - The Less than alert condition parameters. Nested schema for parameters:
- parameters Property Map
- The Less than alert condition parameters. Nested schema for parameters:
LogsAlertConditionUniqueCountParameters, LogsAlertConditionUniqueCountParametersArgs
- Threshold double
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields List<string> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<string> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition Unique Count Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition Unique Count Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Unique Count Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- The threshold for the alert condition.
- Timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- Cardinality
Fields []string - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies []string - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Ignore
Infinity bool - Should the evaluation ignore infinity value.
- Metric
Alert LogsParameters Alert Condition Unique Count Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert LogsPromql Parameters Alert Condition Unique Count Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Unique Count Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition Unique Count Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition Unique Count Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Unique Count Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- The threshold for the alert condition.
- timeframe string
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields string[] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies string[] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity boolean - Should the evaluation ignore infinity value.
- metric
Alert LogsParameters Alert Condition Unique Count Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert LogsPromql Parameters Alert Condition Unique Count Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Unique Count Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- The threshold for the alert condition.
- timeframe str
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality_
fields Sequence[str] - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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_
bies Sequence[str] - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore_
infinity bool - Should the evaluation ignore infinity value.
- metric_
alert_ Logsparameters Alert Condition Unique Count Parameters Metric Alert Parameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Logspromql_ parameters Alert Condition Unique Count Parameters Metric Alert Promql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Logs
Alert Condition Unique Count Parameters Related Extended Data - Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- The threshold for the alert condition.
- timeframe String
- The timeframe for the alert condition.
- Constraints: Allowable values are:
timeframe_5_min_or_unspecified
,timeframe_10_min
,timeframe_20_min
,timeframe_30_min
,timeframe_1_h
,timeframe_2_h
,timeframe_3_h
,timeframe_4_h
,timeframe_6_h
,timeframe_12_h
,timeframe_24_h
,timeframe_48_h
,timeframe_72_h
,timeframe_1_w
,timeframe_1_m
,timeframe_2_m
,timeframe_3_m
,timeframe_15_min
,timeframe_1_min
,timeframe_2_min
,timeframe_36_h
.
- Constraints: Allowable values are:
- cardinality
Fields List<String> - Cardinality fields for unique count alert.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\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
Bies List<String> - The group by fields for the alert condition.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is3
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- ignore
Infinity Boolean - Should the evaluation ignore infinity value.
- metric
Alert Property MapParameters - The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert Property MapPromql Parameters - The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Property Map
- Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
LogsAlertConditionUniqueCountParametersMetricAlertParameters, LogsAlertConditionUniqueCountParametersMetricAlertParametersArgs
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator doubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- Metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Arithmetic
Operator float64Modifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator DoubleModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- arithmetic
Operator string - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field string - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source string - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator numberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- arithmetic_
operator str - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric_
field str - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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_
source str - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic_
operator_ floatmodifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- arithmetic
Operator String - The arithmetic operator of the metric promql alert.
- Constraints: Allowable values are:
avg_or_unspecified
,min
,max
,sum
,count
,percentile
.
- Constraints: Allowable values are:
- metric
Field String - The metric field of the metric alert.
- Constraints: The maximum length is
4096
characters. The minimum length is1
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
Source String - The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- arithmetic
Operator NumberModifier - The arithmetic operator modifier of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionUniqueCountParametersMetricAlertPromqlParameters, LogsAlertConditionUniqueCountParametersMetricAlertPromqlParametersArgs
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold doublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator doubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null doublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- Promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Sample
Threshold float64Percentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Arithmetic
Operator float64Modifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Non
Null float64Percentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Swap
Null boolValues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold DoublePercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator DoubleModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null DoublePercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
- promql
Text string - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold numberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator numberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null numberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null booleanValues - Should we swap null values with zero.
- promql_
text str - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample_
threshold_ floatpercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic_
operator_ floatmodifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - Should we swap null values with zero.
- promql
Text String - The promql text of the metric alert by fields for the alert condition.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- sample
Threshold NumberPercentage - The threshold percentage.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- arithmetic
Operator NumberModifier - The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- non
Null NumberPercentage - Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- swap
Null BooleanValues - Should we swap null values with zero.
LogsAlertConditionUniqueCountParametersRelatedExtendedData, LogsAlertConditionUniqueCountParametersRelatedExtendedDataArgs
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- Cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- Should
Trigger boolDeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
- cleanup
Deadman stringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger booleanDeadman - Should we trigger deadman.
- cleanup_
deadman_ strduration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should_
trigger_ booldeadman - Should we trigger deadman.
- cleanup
Deadman StringDuration - Cleanup deadman duration.
- Constraints: Allowable values are:
cleanup_deadman_duration_never_or_unspecified
,cleanup_deadman_duration_5min
,cleanup_deadman_duration_10min
,cleanup_deadman_duration_1h
,cleanup_deadman_duration_2h
,cleanup_deadman_duration_6h
,cleanup_deadman_duration_12h
,cleanup_deadman_duration_24h
.
- Constraints: Allowable values are:
- should
Trigger BooleanDeadman - Should we trigger deadman.
LogsAlertExpiration, LogsAlertExpirationArgs
LogsAlertFilters, LogsAlertFiltersArgs
- Alias string
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Filter
Type string - The type of the filter.
- Constraints: Allowable values are:
text_or_unspecified
,template
,ratio
,unique_count
,time_relative
,metric
,flow
.
- Constraints: Allowable values are:
- Metadata
Logs
Alert Filters Metadata - The metadata filters. Nested schema for metadata:
- Ratio
Alerts List<LogsAlert Filters Ratio Alert> - The ratio alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for ratio_alerts:
- Constraints: The maximum length is
- Severities List<string>
- The severity of the logs to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- Text string
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Alias string
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Filter
Type string - The type of the filter.
- Constraints: Allowable values are:
text_or_unspecified
,template
,ratio
,unique_count
,time_relative
,metric
,flow
.
- Constraints: Allowable values are:
- Metadata
Logs
Alert Filters Metadata - The metadata filters. Nested schema for metadata:
- Ratio
Alerts []LogsAlert Filters Ratio Alert - The ratio alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for ratio_alerts:
- Constraints: The maximum length is
- Severities []string
- The severity of the logs to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- Text string
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- alias String
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- filter
Type String - The type of the filter.
- Constraints: Allowable values are:
text_or_unspecified
,template
,ratio
,unique_count
,time_relative
,metric
,flow
.
- Constraints: Allowable values are:
- metadata
Logs
Alert Filters Metadata - The metadata filters. Nested schema for metadata:
- ratio
Alerts List<LogsAlert Filters Ratio Alert> - The ratio alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for ratio_alerts:
- Constraints: The maximum length is
- severities List<String>
- The severity of the logs to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- text String
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- alias string
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- filter
Type string - The type of the filter.
- Constraints: Allowable values are:
text_or_unspecified
,template
,ratio
,unique_count
,time_relative
,metric
,flow
.
- Constraints: Allowable values are:
- metadata
Logs
Alert Filters Metadata - The metadata filters. Nested schema for metadata:
- ratio
Alerts LogsAlert Filters Ratio Alert[] - The ratio alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for ratio_alerts:
- Constraints: The maximum length is
- severities string[]
- The severity of the logs to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- text string
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- alias str
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- filter_
type str - The type of the filter.
- Constraints: Allowable values are:
text_or_unspecified
,template
,ratio
,unique_count
,time_relative
,metric
,flow
.
- Constraints: Allowable values are:
- metadata
Logs
Alert Filters Metadata - The metadata filters. Nested schema for metadata:
- ratio_
alerts Sequence[LogsAlert Filters Ratio Alert] - The ratio alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for ratio_alerts:
- Constraints: The maximum length is
- severities Sequence[str]
- The severity of the logs to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- text str
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- alias String
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- filter
Type String - The type of the filter.
- Constraints: Allowable values are:
text_or_unspecified
,template
,ratio
,unique_count
,time_relative
,metric
,flow
.
- Constraints: Allowable values are:
- metadata Property Map
- The metadata filters. Nested schema for metadata:
- ratio
Alerts List<Property Map> - The ratio alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for ratio_alerts:
- Constraints: The maximum length is
- severities List<String>
- The severity of the logs to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- text String
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
LogsAlertFiltersMetadata, LogsAlertFiltersMetadataArgs
- Applications List<string>
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Subsystems List<string>
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Applications []string
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Subsystems []string
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- applications List<String>
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- subsystems List<String>
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- applications string[]
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- subsystems string[]
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- applications Sequence[str]
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- subsystems Sequence[str]
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- applications List<String>
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- subsystems List<String>
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
LogsAlertFiltersRatioAlert, LogsAlertFiltersRatioAlertArgs
- Alias string
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Applications List<string>
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Group
Bies List<string> - The group by fields.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Severities List<string>
- The severities to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- Subsystems List<string>
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Text string
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Alias string
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- Applications []string
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Group
Bies []string - The group by fields.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Severities []string
- The severities to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- Subsystems []string
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Text string
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- alias String
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- applications List<String>
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- group
Bies List<String> - The group by fields.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- severities List<String>
- The severities to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- subsystems List<String>
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- text String
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- alias string
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- applications string[]
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- group
Bies string[] - The group by fields.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- severities string[]
- The severities to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- subsystems string[]
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- text string
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- alias str
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- applications Sequence[str]
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- group_
bies Sequence[str] - The group by fields.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- severities Sequence[str]
- The severities to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- subsystems Sequence[str]
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- text str
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- alias String
- The alias of the filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
- applications List<String>
- The applications to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- group
Bies List<String> - The group by fields.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- severities List<String>
- The severities to filter.
- Constraints: Allowable list items are:
debug_or_unspecified
,verbose
,info
,warning
,error
,critical
. The maximum length is4096
items. The minimum length is0
items.
- Constraints: Allowable list items are:
- subsystems List<String>
- The subsystems to filter.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is100
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- text String
- The text to filter.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
.
- Constraints: The maximum length is
LogsAlertIncidentSettings, LogsAlertIncidentSettingsArgs
- Notify
On string - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- Retriggering
Period doubleSeconds - The retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Use
As boolNotification Settings - Use these settings for all notificaion webhook.
- Notify
On string - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- Retriggering
Period float64Seconds - The retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Use
As boolNotification Settings - Use these settings for all notificaion webhook.
- notify
On String - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- retriggering
Period DoubleSeconds - The retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- use
As BooleanNotification Settings - Use these settings for all notificaion webhook.
- notify
On string - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- retriggering
Period numberSeconds - The retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- use
As booleanNotification Settings - Use these settings for all notificaion webhook.
- notify_
on str - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- retriggering_
period_ floatseconds - The retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- use_
as_ boolnotification_ settings - Use these settings for all notificaion webhook.
- notify
On String - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- retriggering
Period NumberSeconds - The retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- use
As BooleanNotification Settings - Use these settings for all notificaion webhook.
LogsAlertMetaLabel, LogsAlertMetaLabelArgs
- Key string
- The key of the 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
- Value string
- The value of the 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
- Key string
- The key of the 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
- Value string
- The value of the 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
- key String
- The key of the 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
- value String
- The value of the 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
- key string
- The key of the 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
- value string
- The value of the 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
- key str
- The key of the 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
- value str
- The value of the 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
- key String
- The key of the 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
- value String
- The value of the 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
LogsAlertNotificationGroup, LogsAlertNotificationGroupArgs
- Group
By List<string>Fields - Group by fields to group the values by.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Notifications
List<Logs
Alert Notification Group Notification> - Webhook target settings for the the notification.
- Constraints: The maximum length is
20
items. The minimum length is0
items. Nested schema for notifications:
- Constraints: The maximum length is
- Group
By []stringFields - Group by fields to group the values by.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Notifications
[]Logs
Alert Notification Group Notification - Webhook target settings for the the notification.
- Constraints: The maximum length is
20
items. The minimum length is0
items. Nested schema for notifications:
- Constraints: The maximum length is
- group
By List<String>Fields - Group by fields to group the values by.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- notifications
List<Logs
Alert Notification Group Notification> - Webhook target settings for the the notification.
- Constraints: The maximum length is
20
items. The minimum length is0
items. Nested schema for notifications:
- Constraints: The maximum length is
- group
By string[]Fields - Group by fields to group the values by.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- notifications
Logs
Alert Notification Group Notification[] - Webhook target settings for the the notification.
- Constraints: The maximum length is
20
items. The minimum length is0
items. Nested schema for notifications:
- Constraints: The maximum length is
- group_
by_ Sequence[str]fields - Group by fields to group the values by.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- notifications
Sequence[Logs
Alert Notification Group Notification] - Webhook target settings for the the notification.
- Constraints: The maximum length is
20
items. The minimum length is0
items. Nested schema for notifications:
- Constraints: The maximum length is
- group
By List<String>Fields - Group by fields to group the values by.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- notifications List<Property Map>
- Webhook target settings for the the notification.
- Constraints: The maximum length is
20
items. The minimum length is0
items. Nested schema for notifications:
- Constraints: The maximum length is
LogsAlertNotificationGroupNotification, LogsAlertNotificationGroupNotificationArgs
- Integration
Id double - Integration ID.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Notify
On string - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- Recipients
Logs
Alert Notification Group Notification Recipients - Recipients. Nested schema for recipients:
- Retriggering
Period doubleSeconds - Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Integration
Id float64 - Integration ID.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- Notify
On string - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- Recipients
Logs
Alert Notification Group Notification Recipients - Recipients. Nested schema for recipients:
- Retriggering
Period float64Seconds - Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- integration
Id Double - Integration ID.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- notify
On String - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- recipients
Logs
Alert Notification Group Notification Recipients - Recipients. Nested schema for recipients:
- retriggering
Period DoubleSeconds - Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- integration
Id number - Integration ID.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- notify
On string - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- recipients
Logs
Alert Notification Group Notification Recipients - Recipients. Nested schema for recipients:
- retriggering
Period numberSeconds - Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- integration_
id float - Integration ID.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- notify_
on str - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- recipients
Logs
Alert Notification Group Notification Recipients - Recipients. Nested schema for recipients:
- retriggering_
period_ floatseconds - Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- integration
Id Number - Integration ID.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
- notify
On String - Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- recipients Property Map
- Recipients. Nested schema for recipients:
- retriggering
Period NumberSeconds - Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
.
- Constraints: The maximum value is
LogsAlertNotificationGroupNotificationRecipients, LogsAlertNotificationGroupNotificationRecipientsArgs
- Emails List<string>
- Email addresses.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Emails []string
- Email addresses.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- emails List<String>
- Email addresses.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- emails string[]
- Email addresses.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- emails Sequence[str]
- Email addresses.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- emails List<String>
- Email addresses.
- Constraints: The list items must match regular expression
/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/
. The maximum length is20
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
Import
You can import the ibm_logs_alert
resource by using id
. id
Alert id is combination of region
, instance_id
and alert_id
.
Syntax
```sh $ pulumi import ibm:index/logsAlert:LogsAlert logs_alert < region >/< instance_id >/< alert_id >; ```
Example
$ pulumi import ibm:index/logsAlert:LogsAlert logs_alert eu-gb/3dc02998-0b50-4ea8-b68a-4779d716fa1f/4dc02998-0bc50-0b50-b68a-4779d716fa1f
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.