ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud
ibm.getLogsAlert
Explore with Pulumi AI
Provides a read-only data source to retrieve information about a logs_alert. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const logsAlertInstance = ibm.getLogsAlert({
instanceId: ibm_logs_alert.logs_alert_instance.instance_id,
region: ibm_logs_alert.logs_alert_instance.region,
logsAlertId: ibm_logs_alert.logs_alert_instance.alert_id,
});
import pulumi
import pulumi_ibm as ibm
logs_alert_instance = ibm.get_logs_alert(instance_id=ibm_logs_alert["logs_alert_instance"]["instance_id"],
region=ibm_logs_alert["logs_alert_instance"]["region"],
logs_alert_id=ibm_logs_alert["logs_alert_instance"]["alert_id"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.LookupLogsAlert(ctx, &ibm.LookupLogsAlertArgs{
InstanceId: ibm_logs_alert.Logs_alert_instance.Instance_id,
Region: pulumi.StringRef(ibm_logs_alert.Logs_alert_instance.Region),
LogsAlertId: ibm_logs_alert.Logs_alert_instance.Alert_id,
}, nil)
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 logsAlertInstance = Ibm.GetLogsAlert.Invoke(new()
{
InstanceId = ibm_logs_alert.Logs_alert_instance.Instance_id,
Region = ibm_logs_alert.Logs_alert_instance.Region,
LogsAlertId = ibm_logs_alert.Logs_alert_instance.Alert_id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetLogsAlertArgs;
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) {
final var logsAlertInstance = IbmFunctions.getLogsAlert(GetLogsAlertArgs.builder()
.instanceId(ibm_logs_alert.logs_alert_instance().instance_id())
.region(ibm_logs_alert.logs_alert_instance().region())
.logsAlertId(ibm_logs_alert.logs_alert_instance().alert_id())
.build());
}
}
variables:
logsAlertInstance:
fn::invoke:
function: ibm:getLogsAlert
arguments:
instanceId: ${ibm_logs_alert.logs_alert_instance.instance_id}
region: ${ibm_logs_alert.logs_alert_instance.region}
logsAlertId: ${ibm_logs_alert.logs_alert_instance.alert_id}
Using getLogsAlert
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getLogsAlert(args: GetLogsAlertArgs, opts?: InvokeOptions): Promise<GetLogsAlertResult>
function getLogsAlertOutput(args: GetLogsAlertOutputArgs, opts?: InvokeOptions): Output<GetLogsAlertResult>
def get_logs_alert(endpoint_type: Optional[str] = None,
id: Optional[str] = None,
instance_id: Optional[str] = None,
logs_alert_id: Optional[str] = None,
region: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetLogsAlertResult
def get_logs_alert_output(endpoint_type: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
logs_alert_id: Optional[pulumi.Input[str]] = None,
region: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetLogsAlertResult]
func LookupLogsAlert(ctx *Context, args *LookupLogsAlertArgs, opts ...InvokeOption) (*LookupLogsAlertResult, error)
func LookupLogsAlertOutput(ctx *Context, args *LookupLogsAlertOutputArgs, opts ...InvokeOption) LookupLogsAlertResultOutput
> Note: This function is named LookupLogsAlert
in the Go SDK.
public static class GetLogsAlert
{
public static Task<GetLogsAlertResult> InvokeAsync(GetLogsAlertArgs args, InvokeOptions? opts = null)
public static Output<GetLogsAlertResult> Invoke(GetLogsAlertInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetLogsAlertResult> getLogsAlert(GetLogsAlertArgs args, InvokeOptions options)
public static Output<GetLogsAlertResult> getLogsAlert(GetLogsAlertArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getLogsAlert:getLogsAlert
arguments:
# arguments dictionary
The following arguments are supported:
- Instance
Id string - Cloud Logs Instance GUID.
- Logs
Alert stringId - Alert ID.
- 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
- Endpoint
Type string - Id string
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Region string
- Cloud Logs Instance Region.
- Instance
Id string - Cloud Logs Instance GUID.
- Logs
Alert stringId - Alert ID.
- 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
- Endpoint
Type string - Id string
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Region string
- Cloud Logs Instance Region.
- instance
Id String - Cloud Logs Instance GUID.
- logs
Alert StringId - Alert ID.
- 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
- endpoint
Type String - id String
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region String
- Cloud Logs Instance Region.
- instance
Id string - Cloud Logs Instance GUID.
- logs
Alert stringId - Alert ID.
- 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
- endpoint
Type string - id string
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region string
- Cloud Logs Instance Region.
- instance_
id str - Cloud Logs Instance GUID.
- logs_
alert_ strid - Alert ID.
- 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
- endpoint_
type str - id str
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region str
- Cloud Logs Instance Region.
- instance
Id String - Cloud Logs Instance GUID.
- logs
Alert StringId - Alert ID.
- 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
- endpoint
Type String - id String
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region String
- Cloud Logs Instance Region.
getLogsAlert Result
The following output properties are available:
- Active
Whens List<GetLogs Alert Active When> - (List) When should the alert be active. Nested schema for active_when:
- Conditions
List<Get
Logs Alert Condition> - (List) Alert condition. Nested schema for condition:
- Description string
- (String) Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[A-Za-z0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- Expirations
List<Get
Logs Alert Expiration> - (List) Alert expiration date. Nested schema for expiration:
- Filters
List<Get
Logs Alert Filter> - (List) Alert filters. Nested schema for filters:
- Id string
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Incident
Settings List<GetLogs Alert Incident Setting> - (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- Instance
Id string - Is
Active bool - (Boolean) Alert is active.
- Logs
Alert stringId - Meta
Labels List<GetLogs Alert Meta Label> - (List) 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 - (List) 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
- (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<GetLogs Alert Notification Group> - (List) 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 - (List) 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
- Severity string
- (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
- Endpoint
Type string
- Active
Whens []GetLogs Alert Active When - (List) When should the alert be active. Nested schema for active_when:
- Conditions
[]Get
Logs Alert Condition - (List) Alert condition. Nested schema for condition:
- Description string
- (String) Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[A-Za-z0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- Expirations
[]Get
Logs Alert Expiration - (List) Alert expiration date. Nested schema for expiration:
- Filters
[]Get
Logs Alert Filter - (List) Alert filters. Nested schema for filters:
- Id string
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Incident
Settings []GetLogs Alert Incident Setting - (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- Instance
Id string - Is
Active bool - (Boolean) Alert is active.
- Logs
Alert stringId - Meta
Labels []GetLogs Alert Meta Label - (List) 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 - (List) 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
- (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 []GetLogs Alert Notification Group - (List) 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 - (List) 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
- Severity string
- (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
- Endpoint
Type string
- active
Whens List<GetLogs Alert Active When> - (List) When should the alert be active. Nested schema for active_when:
- conditions
List<Get
Logs Alert Condition> - (List) Alert condition. Nested schema for condition:
- description String
- (String) Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[A-Za-z0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- expirations
List<Get
Logs Alert Expiration> - (List) Alert expiration date. Nested schema for expiration:
- filters
List<Get
Logs Alert Filter> - (List) Alert filters. Nested schema for filters:
- id String
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- incident
Settings List<GetLogs Alert Incident Setting> - (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- instance
Id String - is
Active Boolean - (Boolean) Alert is active.
- logs
Alert StringId - meta
Labels List<GetLogs Alert Meta Label> - (List) 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 - (List) 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
- (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<GetLogs Alert Notification Group> - (List) 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 - (List) 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
- severity String
- (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
- endpoint
Type String
- active
Whens GetLogs Alert Active When[] - (List) When should the alert be active. Nested schema for active_when:
- conditions
Get
Logs Alert Condition[] - (List) Alert condition. Nested schema for condition:
- description string
- (String) Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[A-Za-z0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- expirations
Get
Logs Alert Expiration[] - (List) Alert expiration date. Nested schema for expiration:
- filters
Get
Logs Alert Filter[] - (List) Alert filters. Nested schema for filters:
- id string
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- incident
Settings GetLogs Alert Incident Setting[] - (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- instance
Id string - is
Active boolean - (Boolean) Alert is active.
- logs
Alert stringId - meta
Labels GetLogs Alert Meta Label[] - (List) 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 - (List) 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
- (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 GetLogs Alert Notification Group[] - (List) 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 - (List) 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
- severity string
- (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
- endpoint
Type string
- active_
whens Sequence[GetLogs Alert Active When] - (List) When should the alert be active. Nested schema for active_when:
- conditions
Sequence[Get
Logs Alert Condition] - (List) Alert condition. Nested schema for condition:
- description str
- (String) Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[A-Za-z0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- expirations
Sequence[Get
Logs Alert Expiration] - (List) Alert expiration date. Nested schema for expiration:
- filters
Sequence[Get
Logs Alert Filter] - (List) Alert filters. Nested schema for filters:
- id str
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- incident_
settings Sequence[GetLogs Alert Incident Setting] - (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- instance_
id str - is_
active bool - (Boolean) Alert is active.
- logs_
alert_ strid - meta_
labels Sequence[GetLogs Alert Meta Label] - (List) 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 - (List) 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
- (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 Sequence[GetLogs Alert Notification Group] - (List) 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 - (List) 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
- severity str
- (String) 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
- endpoint_
type str
- active
Whens List<Property Map> - (List) When should the alert be active. Nested schema for active_when:
- conditions List<Property Map>
- (List) Alert condition. Nested schema for condition:
- description String
- (String) Alert description.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression/^[A-Za-z0-9_\\-\\s]+$/
.
- Constraints: The maximum length is
- expirations List<Property Map>
- (List) Alert expiration date. Nested schema for expiration:
- filters List<Property Map>
- (List) Alert filters. Nested schema for filters:
- id String
- (String) The alert ID.
- Constraints: The maximum length is
4096
characters. The minimum length is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- incident
Settings List<Property Map> - (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
- instance
Id String - is
Active Boolean - (Boolean) Alert is active.
- logs
Alert StringId - meta
Labels List<Property Map> - (List) 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 - (List) 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
- (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> - (List) 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 - (List) 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
- severity String
- (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
- endpoint
Type String
Supporting Types
GetLogsAlertActiveWhen
- Timeframes
List<Get
Logs Alert Active When Timeframe> - (List) 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
[]Get
Logs Alert Active When Timeframe - (List) 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<Get
Logs Alert Active When Timeframe> - (List) 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
Get
Logs Alert Active When Timeframe[] - (List) 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[Get
Logs Alert Active When Timeframe] - (List) 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>
- (List) 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
GetLogsAlertActiveWhenTimeframe
- Days
Of List<string>Weeks - (List) 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:
- Ranges
List<Get
Logs Alert Active When Timeframe Range> - (List) Time range in the day of the week. Nested schema for range:
- Days
Of []stringWeeks - (List) 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:
- Ranges
[]Get
Logs Alert Active When Timeframe Range - (List) Time range in the day of the week. Nested schema for range:
- days
Of List<String>Weeks - (List) 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:
- ranges
List<Get
Logs Alert Active When Timeframe Range> - (List) Time range in the day of the week. Nested schema for range:
- days
Of string[]Weeks - (List) 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:
- ranges
Get
Logs Alert Active When Timeframe Range[] - (List) Time range in the day of the week. Nested schema for range:
- days_
of_ Sequence[str]weeks - (List) 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:
- ranges
Sequence[Get
Logs Alert Active When Timeframe Range] - (List) Time range in the day of the week. Nested schema for range:
- days
Of List<String>Weeks - (List) 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:
- ranges List<Property Map>
- (List) Time range in the day of the week. Nested schema for range:
GetLogsAlertActiveWhenTimeframeRange
- Ends
List<Get
Logs Alert Active When Timeframe Range End> - (List) Start time. Nested schema for end:
- Starts
List<Get
Logs Alert Active When Timeframe Range Start> - (List) Start time. Nested schema for start:
- Ends
[]Get
Logs Alert Active When Timeframe Range End - (List) Start time. Nested schema for end:
- Starts
[]Get
Logs Alert Active When Timeframe Range Start - (List) Start time. Nested schema for start:
- ends
List<Get
Logs Alert Active When Timeframe Range End> - (List) Start time. Nested schema for end:
- starts
List<Get
Logs Alert Active When Timeframe Range Start> - (List) Start time. Nested schema for start:
- ends
Get
Logs Alert Active When Timeframe Range End[] - (List) Start time. Nested schema for end:
- starts
Get
Logs Alert Active When Timeframe Range Start[] - (List) Start time. Nested schema for start:
- ends
Sequence[Get
Logs Alert Active When Timeframe Range End] - (List) Start time. Nested schema for end:
- starts
Sequence[Get
Logs Alert Active When Timeframe Range Start] - (List) Start time. Nested schema for start:
- ends List<Property Map>
- (List) Start time. Nested schema for end:
- starts List<Property Map>
- (List) Start time. Nested schema for start:
GetLogsAlertActiveWhenTimeframeRangeEnd
GetLogsAlertActiveWhenTimeframeRangeStart
GetLogsAlertCondition
- Flows
List<Get
Logs Alert Condition Flow> - (List) Condition for flow alert. Nested schema for flow:
- Immediates
List<Get
Logs Alert Condition Immediate> - (List) Condition for immediate standard alert. Nested schema for immediate:
- Less
Than List<GetUsuals Logs Alert Condition Less Than Usual> - (List) Condition for less than usual alert. Nested schema for less_than_usual:
- Less
Thans List<GetLogs Alert Condition Less Than> - (List) Condition for less than alert. Nested schema for less_than:
- More
Than List<GetUsuals Logs Alert Condition More Than Usual> - (List) Condition for more than usual alert. Nested schema for more_than_usual:
- More
Thans List<GetLogs Alert Condition More Than> - (List) Condition for more than alert. Nested schema for more_than:
- New
Values List<GetLogs Alert Condition New Value> - (List) Condition for new value alert. Nested schema for new_value:
- Unique
Counts List<GetLogs Alert Condition Unique Count> - (List) Condition for unique count alert. Nested schema for unique_count:
- Flows
[]Get
Logs Alert Condition Flow - (List) Condition for flow alert. Nested schema for flow:
- Immediates
[]Get
Logs Alert Condition Immediate - (List) Condition for immediate standard alert. Nested schema for immediate:
- Less
Than []GetUsuals Logs Alert Condition Less Than Usual - (List) Condition for less than usual alert. Nested schema for less_than_usual:
- Less
Thans []GetLogs Alert Condition Less Than - (List) Condition for less than alert. Nested schema for less_than:
- More
Than []GetUsuals Logs Alert Condition More Than Usual - (List) Condition for more than usual alert. Nested schema for more_than_usual:
- More
Thans []GetLogs Alert Condition More Than - (List) Condition for more than alert. Nested schema for more_than:
- New
Values []GetLogs Alert Condition New Value - (List) Condition for new value alert. Nested schema for new_value:
- Unique
Counts []GetLogs Alert Condition Unique Count - (List) Condition for unique count alert. Nested schema for unique_count:
- flows
List<Get
Logs Alert Condition Flow> - (List) Condition for flow alert. Nested schema for flow:
- immediates
List<Get
Logs Alert Condition Immediate> - (List) Condition for immediate standard alert. Nested schema for immediate:
- less
Than List<GetUsuals Logs Alert Condition Less Than Usual> - (List) Condition for less than usual alert. Nested schema for less_than_usual:
- less
Thans List<GetLogs Alert Condition Less Than> - (List) Condition for less than alert. Nested schema for less_than:
- more
Than List<GetUsuals Logs Alert Condition More Than Usual> - (List) Condition for more than usual alert. Nested schema for more_than_usual:
- more
Thans List<GetLogs Alert Condition More Than> - (List) Condition for more than alert. Nested schema for more_than:
- new
Values List<GetLogs Alert Condition New Value> - (List) Condition for new value alert. Nested schema for new_value:
- unique
Counts List<GetLogs Alert Condition Unique Count> - (List) Condition for unique count alert. Nested schema for unique_count:
- flows
Get
Logs Alert Condition Flow[] - (List) Condition for flow alert. Nested schema for flow:
- immediates
Get
Logs Alert Condition Immediate[] - (List) Condition for immediate standard alert. Nested schema for immediate:
- less
Than GetUsuals Logs Alert Condition Less Than Usual[] - (List) Condition for less than usual alert. Nested schema for less_than_usual:
- less
Thans GetLogs Alert Condition Less Than[] - (List) Condition for less than alert. Nested schema for less_than:
- more
Than GetUsuals Logs Alert Condition More Than Usual[] - (List) Condition for more than usual alert. Nested schema for more_than_usual:
- more
Thans GetLogs Alert Condition More Than[] - (List) Condition for more than alert. Nested schema for more_than:
- new
Values GetLogs Alert Condition New Value[] - (List) Condition for new value alert. Nested schema for new_value:
- unique
Counts GetLogs Alert Condition Unique Count[] - (List) Condition for unique count alert. Nested schema for unique_count:
- flows
Sequence[Get
Logs Alert Condition Flow] - (List) Condition for flow alert. Nested schema for flow:
- immediates
Sequence[Get
Logs Alert Condition Immediate] - (List) Condition for immediate standard alert. Nested schema for immediate:
- less_
than_ Sequence[Getusuals Logs Alert Condition Less Than Usual] - (List) Condition for less than usual alert. Nested schema for less_than_usual:
- less_
thans Sequence[GetLogs Alert Condition Less Than] - (List) Condition for less than alert. Nested schema for less_than:
- more_
than_ Sequence[Getusuals Logs Alert Condition More Than Usual] - (List) Condition for more than usual alert. Nested schema for more_than_usual:
- more_
thans Sequence[GetLogs Alert Condition More Than] - (List) Condition for more than alert. Nested schema for more_than:
- new_
values Sequence[GetLogs Alert Condition New Value] - (List) Condition for new value alert. Nested schema for new_value:
- unique_
counts Sequence[GetLogs Alert Condition Unique Count] - (List) Condition for unique count alert. Nested schema for unique_count:
- flows List<Property Map>
- (List) Condition for flow alert. Nested schema for flow:
- immediates List<Property Map>
- (List) Condition for immediate standard alert. Nested schema for immediate:
- less
Than List<Property Map>Usuals - (List) Condition for less than usual alert. Nested schema for less_than_usual:
- less
Thans List<Property Map> - (List) Condition for less than alert. Nested schema for less_than:
- more
Than List<Property Map>Usuals - (List) Condition for more than usual alert. Nested schema for more_than_usual:
- more
Thans List<Property Map> - (List) Condition for more than alert. Nested schema for more_than:
- new
Values List<Property Map> - (List) Condition for new value alert. Nested schema for new_value:
- unique
Counts List<Property Map> - (List) Condition for unique count alert. Nested schema for unique_count:
GetLogsAlertConditionFlow
- Enforce
Suppression bool - (Boolean) Should suppression be enforced on the flow alert.
- Parameters
List<Get
Logs Alert Condition Flow Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- Stages
List<Get
Logs Alert Condition Flow Stage> - (List) 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 - (Boolean) Should suppression be enforced on the flow alert.
- Parameters
[]Get
Logs Alert Condition Flow Parameter - (List) The Less than alert condition parameters. Nested schema for parameters:
- Stages
[]Get
Logs Alert Condition Flow Stage - (List) 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 - (Boolean) Should suppression be enforced on the flow alert.
- parameters
List<Get
Logs Alert Condition Flow Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- stages
List<Get
Logs Alert Condition Flow Stage> - (List) 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 - (Boolean) Should suppression be enforced on the flow alert.
- parameters
Get
Logs Alert Condition Flow Parameter[] - (List) The Less than alert condition parameters. Nested schema for parameters:
- stages
Get
Logs Alert Condition Flow Stage[] - (List) 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 - (Boolean) Should suppression be enforced on the flow alert.
- parameters
Sequence[Get
Logs Alert Condition Flow Parameter] - (List) The Less than alert condition parameters. Nested schema for parameters:
- stages
Sequence[Get
Logs Alert Condition Flow Stage] - (List) 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 - (Boolean) Should suppression be enforced on the flow alert.
- parameters List<Property Map>
- (List) The Less than alert condition parameters. Nested schema for parameters:
- stages List<Property Map>
- (List) 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
GetLogsAlertConditionFlowParameter
- Cardinality
Fields List<string> - (List) 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> - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert List<GetParameters Logs Alert Condition Flow Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert List<GetPromql Parameters Logs Alert Condition Flow Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition Flow Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold double
- (Float) The threshold for the alert condition.
- Timeframe string
- (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 - (List) 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 - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert []GetParameters Logs Alert Condition Flow Parameter Metric Alert Parameter - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert []GetPromql Parameters Logs Alert Condition Flow Parameter Metric Alert Promql Parameter - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- []Get
Logs Alert Condition Flow Parameter Related Extended Data - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- (Float) The threshold for the alert condition.
- Timeframe string
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<GetParameters Logs Alert Condition Flow Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<GetPromql Parameters Logs Alert Condition Flow Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition Flow Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- (Float) The threshold for the alert condition.
- timeframe String
- (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[] - (List) 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[] - (List) 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
- ignore
Infinity boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert GetParameters Logs Alert Condition Flow Parameter Metric Alert Parameter[] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert GetPromql Parameters Logs Alert Condition Flow Parameter Metric Alert Promql Parameter[] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Get
Logs Alert Condition Flow Parameter Related Extended Data[] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- (Float) The threshold for the alert condition.
- timeframe string
- (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 Sequence[str] - (List) 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] - (List) 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
- ignore_
infinity bool - (Boolean) Should the evaluation ignore infinity value.
- metric_
alert_ Sequence[Getparameters Logs Alert Condition Flow Parameter Metric Alert Parameter] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Sequence[Getpromql_ parameters Logs Alert Condition Flow Parameter Metric Alert Promql Parameter] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Sequence[Get
Logs Alert Condition Flow Parameter Related Extended Data] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- (Float) The threshold for the alert condition.
- timeframe str
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<Property Map>Parameters - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<Property Map>Promql Parameters - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Property Map>
- (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- (Float) The threshold for the alert condition.
- timeframe String
- (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:
GetLogsAlertConditionFlowParameterMetricAlertParameter
- Arithmetic
Operator string - (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:
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator string - (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:
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator string - (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:
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator str - (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:
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric_
field str - (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 str - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionFlowParameterMetricAlertPromqlParameter
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql_
text str - (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_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionFlowParameterRelatedExtendedData
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup_
deadman_ strduration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
GetLogsAlertConditionFlowStage
- Groups
List<Get
Logs Alert Condition Flow Stage Group> - (List) 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
- Timeframes
List<Get
Logs Alert Condition Flow Stage 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:
- Groups
[]Get
Logs Alert Condition Flow Stage Group - (List) 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
- Timeframes
[]Get
Logs Alert Condition Flow Stage 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:
- groups
List<Get
Logs Alert Condition Flow Stage Group> - (List) 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
- timeframes
List<Get
Logs Alert Condition Flow Stage 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:
- groups
Get
Logs Alert Condition Flow Stage Group[] - (List) 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
- timeframes
Get
Logs Alert Condition Flow Stage 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:
- groups
Sequence[Get
Logs Alert Condition Flow Stage Group] - (List) 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
- timeframes
Sequence[Get
Logs Alert Condition Flow Stage 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:
- groups List<Property Map>
- (List) 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
- timeframes List<Property Map>
- (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:
GetLogsAlertConditionFlowStageGroup
- Alerts
List<Get
Logs Alert Condition Flow Stage Group Alert> - (List) List of alerts. Nested schema for alerts:
- Next
Op string - (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- Alerts
[]Get
Logs Alert Condition Flow Stage Group Alert - (List) List of alerts. Nested schema for alerts:
- Next
Op string - (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- alerts
List<Get
Logs Alert Condition Flow Stage Group Alert> - (List) List of alerts. Nested schema for alerts:
- next
Op String - (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- alerts
Get
Logs Alert Condition Flow Stage Group Alert[] - (List) List of alerts. Nested schema for alerts:
- next
Op string - (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- alerts
Sequence[Get
Logs Alert Condition Flow Stage Group Alert] - (List) List of alerts. Nested schema for alerts:
- next_
op str - (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- alerts List<Property Map>
- (List) List of alerts. Nested schema for alerts:
- next
Op String - (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
GetLogsAlertConditionFlowStageGroupAlert
- Op string
- (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- Values
List<Get
Logs Alert Condition Flow Stage Group Alert Value> - (List) 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
- (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- Values
[]Get
Logs Alert Condition Flow Stage Group Alert Value - (List) 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
- (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- values
List<Get
Logs Alert Condition Flow Stage Group Alert Value> - (List) 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
- (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- values
Get
Logs Alert Condition Flow Stage Group Alert Value[] - (List) 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
- (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- values
Sequence[Get
Logs Alert Condition Flow Stage Group Alert Value] - (List) 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
- (String) Operator for the alerts.
- Constraints: Allowable values are:
and
,or
.
- Constraints: Allowable values are:
- values List<Property Map>
- (List) List of alerts.
- Constraints: The maximum length is
4096
items. The minimum length is0
items. Nested schema for values:
- Constraints: The maximum length is
GetLogsAlertConditionFlowStageGroupAlertValue
GetLogsAlertConditionFlowStageTimeframe
- Ms double
- (Integer) Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Ms float64
- (Integer) Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- ms Double
- (Integer) Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- ms number
- (Integer) Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- ms float
- (Integer) Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- ms Number
- (Integer) Timeframe in milliseconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
GetLogsAlertConditionLessThan
- Parameters
List<Get
Logs Alert Condition Less Than Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- Parameters
[]Get
Logs Alert Condition Less Than Parameter - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
List<Get
Logs Alert Condition Less Than Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
Get
Logs Alert Condition Less Than Parameter[] - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
Sequence[Get
Logs Alert Condition Less Than Parameter] - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters List<Property Map>
- (List) The Less than alert condition parameters. Nested schema for parameters:
GetLogsAlertConditionLessThanParameter
- Cardinality
Fields List<string> - (List) 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> - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert List<GetParameters Logs Alert Condition Less Than Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert List<GetPromql Parameters Logs Alert Condition Less Than Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition Less Than Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold double
- (Float) The threshold for the alert condition.
- Timeframe string
- (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 - (List) 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 - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert []GetParameters Logs Alert Condition Less Than Parameter Metric Alert Parameter - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert []GetPromql Parameters Logs Alert Condition Less Than Parameter Metric Alert Promql Parameter - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- []Get
Logs Alert Condition Less Than Parameter Related Extended Data - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- (Float) The threshold for the alert condition.
- Timeframe string
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<GetParameters Logs Alert Condition Less Than Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<GetPromql Parameters Logs Alert Condition Less Than Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition Less Than Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- (Float) The threshold for the alert condition.
- timeframe String
- (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[] - (List) 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[] - (List) 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
- ignore
Infinity boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert GetParameters Logs Alert Condition Less Than Parameter Metric Alert Parameter[] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert GetPromql Parameters Logs Alert Condition Less Than Parameter Metric Alert Promql Parameter[] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Get
Logs Alert Condition Less Than Parameter Related Extended Data[] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- (Float) The threshold for the alert condition.
- timeframe string
- (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 Sequence[str] - (List) 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] - (List) 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
- ignore_
infinity bool - (Boolean) Should the evaluation ignore infinity value.
- metric_
alert_ Sequence[Getparameters Logs Alert Condition Less Than Parameter Metric Alert Parameter] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Sequence[Getpromql_ parameters Logs Alert Condition Less Than Parameter Metric Alert Promql Parameter] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Sequence[Get
Logs Alert Condition Less Than Parameter Related Extended Data] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- (Float) The threshold for the alert condition.
- timeframe str
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<Property Map>Parameters - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<Property Map>Promql Parameters - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Property Map>
- (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- (Float) The threshold for the alert condition.
- timeframe String
- (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:
GetLogsAlertConditionLessThanParameterMetricAlertParameter
- Arithmetic
Operator string - (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:
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator string - (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:
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator string - (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:
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator str - (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:
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric_
field str - (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 str - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionLessThanParameterMetricAlertPromqlParameter
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql_
text str - (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_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionLessThanParameterRelatedExtendedData
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup_
deadman_ strduration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
GetLogsAlertConditionLessThanUsual
- Parameters
List<Get
Logs Alert Condition Less Than Usual Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- Parameters
[]Get
Logs Alert Condition Less Than Usual Parameter - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
List<Get
Logs Alert Condition Less Than Usual Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
Get
Logs Alert Condition Less Than Usual Parameter[] - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
Sequence[Get
Logs Alert Condition Less Than Usual Parameter] - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters List<Property Map>
- (List) The Less than alert condition parameters. Nested schema for parameters:
GetLogsAlertConditionLessThanUsualParameter
- Cardinality
Fields List<string> - (List) 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> - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert List<GetParameters Logs Alert Condition Less Than Usual Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert List<GetPromql Parameters Logs Alert Condition Less Than Usual Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition Less Than Usual Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold double
- (Float) The threshold for the alert condition.
- Timeframe string
- (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 - (List) 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 - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert []GetParameters Logs Alert Condition Less Than Usual Parameter Metric Alert Parameter - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert []GetPromql Parameters Logs Alert Condition Less Than Usual Parameter Metric Alert Promql Parameter - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- []Get
Logs Alert Condition Less Than Usual Parameter Related Extended Data - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- (Float) The threshold for the alert condition.
- Timeframe string
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<GetParameters Logs Alert Condition Less Than Usual Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<GetPromql Parameters Logs Alert Condition Less Than Usual Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition Less Than Usual Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- (Float) The threshold for the alert condition.
- timeframe String
- (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[] - (List) 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[] - (List) 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
- ignore
Infinity boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert GetParameters Logs Alert Condition Less Than Usual Parameter Metric Alert Parameter[] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert GetPromql Parameters Logs Alert Condition Less Than Usual Parameter Metric Alert Promql Parameter[] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Get
Logs Alert Condition Less Than Usual Parameter Related Extended Data[] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- (Float) The threshold for the alert condition.
- timeframe string
- (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 Sequence[str] - (List) 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] - (List) 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
- ignore_
infinity bool - (Boolean) Should the evaluation ignore infinity value.
- metric_
alert_ Sequence[Getparameters Logs Alert Condition Less Than Usual Parameter Metric Alert Parameter] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Sequence[Getpromql_ parameters Logs Alert Condition Less Than Usual Parameter Metric Alert Promql Parameter] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Sequence[Get
Logs Alert Condition Less Than Usual Parameter Related Extended Data] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- (Float) The threshold for the alert condition.
- timeframe str
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<Property Map>Parameters - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<Property Map>Promql Parameters - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Property Map>
- (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- (Float) The threshold for the alert condition.
- timeframe String
- (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:
GetLogsAlertConditionLessThanUsualParameterMetricAlertParameter
- Arithmetic
Operator string - (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:
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator string - (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:
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator string - (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:
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator str - (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:
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric_
field str - (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 str - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionLessThanUsualParameterMetricAlertPromqlParameter
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql_
text str - (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_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionLessThanUsualParameterRelatedExtendedData
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup_
deadman_ strduration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
GetLogsAlertConditionMoreThan
- Evaluation
Window string - (String) The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- Parameters
List<Get
Logs Alert Condition More Than Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- Evaluation
Window string - (String) The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- Parameters
[]Get
Logs Alert Condition More Than Parameter - (List) The Less than alert condition parameters. Nested schema for parameters:
- evaluation
Window String - (String) The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- parameters
List<Get
Logs Alert Condition More Than Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- evaluation
Window string - (String) The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- parameters
Get
Logs Alert Condition More Than Parameter[] - (List) The Less than alert condition parameters. Nested schema for parameters:
- evaluation_
window str - (String) The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- parameters
Sequence[Get
Logs Alert Condition More Than Parameter] - (List) The Less than alert condition parameters. Nested schema for parameters:
- evaluation
Window String - (String) The evaluation window for the alert condition.
- Constraints: Allowable values are:
rolling_or_unspecified
,dynamic
.
- Constraints: Allowable values are:
- parameters List<Property Map>
- (List) The Less than alert condition parameters. Nested schema for parameters:
GetLogsAlertConditionMoreThanParameter
- Cardinality
Fields List<string> - (List) 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> - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert List<GetParameters Logs Alert Condition More Than Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert List<GetPromql Parameters Logs Alert Condition More Than Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition More Than Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold double
- (Float) The threshold for the alert condition.
- Timeframe string
- (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 - (List) 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 - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert []GetParameters Logs Alert Condition More Than Parameter Metric Alert Parameter - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert []GetPromql Parameters Logs Alert Condition More Than Parameter Metric Alert Promql Parameter - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- []Get
Logs Alert Condition More Than Parameter Related Extended Data - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- (Float) The threshold for the alert condition.
- Timeframe string
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<GetParameters Logs Alert Condition More Than Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<GetPromql Parameters Logs Alert Condition More Than Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition More Than Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- (Float) The threshold for the alert condition.
- timeframe String
- (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[] - (List) 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[] - (List) 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
- ignore
Infinity boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert GetParameters Logs Alert Condition More Than Parameter Metric Alert Parameter[] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert GetPromql Parameters Logs Alert Condition More Than Parameter Metric Alert Promql Parameter[] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Get
Logs Alert Condition More Than Parameter Related Extended Data[] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- (Float) The threshold for the alert condition.
- timeframe string
- (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 Sequence[str] - (List) 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] - (List) 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
- ignore_
infinity bool - (Boolean) Should the evaluation ignore infinity value.
- metric_
alert_ Sequence[Getparameters Logs Alert Condition More Than Parameter Metric Alert Parameter] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Sequence[Getpromql_ parameters Logs Alert Condition More Than Parameter Metric Alert Promql Parameter] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Sequence[Get
Logs Alert Condition More Than Parameter Related Extended Data] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- (Float) The threshold for the alert condition.
- timeframe str
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<Property Map>Parameters - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<Property Map>Promql Parameters - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Property Map>
- (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- (Float) The threshold for the alert condition.
- timeframe String
- (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:
GetLogsAlertConditionMoreThanParameterMetricAlertParameter
- Arithmetic
Operator string - (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:
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator string - (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:
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator string - (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:
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator str - (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:
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric_
field str - (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 str - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionMoreThanParameterMetricAlertPromqlParameter
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql_
text str - (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_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionMoreThanParameterRelatedExtendedData
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup_
deadman_ strduration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
GetLogsAlertConditionMoreThanUsual
- Parameters
List<Get
Logs Alert Condition More Than Usual Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- Parameters
[]Get
Logs Alert Condition More Than Usual Parameter - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
List<Get
Logs Alert Condition More Than Usual Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
Get
Logs Alert Condition More Than Usual Parameter[] - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
Sequence[Get
Logs Alert Condition More Than Usual Parameter] - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters List<Property Map>
- (List) The Less than alert condition parameters. Nested schema for parameters:
GetLogsAlertConditionMoreThanUsualParameter
- Cardinality
Fields List<string> - (List) 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> - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert List<GetParameters Logs Alert Condition More Than Usual Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert List<GetPromql Parameters Logs Alert Condition More Than Usual Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition More Than Usual Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold double
- (Float) The threshold for the alert condition.
- Timeframe string
- (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 - (List) 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 - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert []GetParameters Logs Alert Condition More Than Usual Parameter Metric Alert Parameter - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert []GetPromql Parameters Logs Alert Condition More Than Usual Parameter Metric Alert Promql Parameter - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- []Get
Logs Alert Condition More Than Usual Parameter Related Extended Data - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- (Float) The threshold for the alert condition.
- Timeframe string
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<GetParameters Logs Alert Condition More Than Usual Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<GetPromql Parameters Logs Alert Condition More Than Usual Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition More Than Usual Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- (Float) The threshold for the alert condition.
- timeframe String
- (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[] - (List) 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[] - (List) 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
- ignore
Infinity boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert GetParameters Logs Alert Condition More Than Usual Parameter Metric Alert Parameter[] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert GetPromql Parameters Logs Alert Condition More Than Usual Parameter Metric Alert Promql Parameter[] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Get
Logs Alert Condition More Than Usual Parameter Related Extended Data[] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- (Float) The threshold for the alert condition.
- timeframe string
- (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 Sequence[str] - (List) 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] - (List) 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
- ignore_
infinity bool - (Boolean) Should the evaluation ignore infinity value.
- metric_
alert_ Sequence[Getparameters Logs Alert Condition More Than Usual Parameter Metric Alert Parameter] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Sequence[Getpromql_ parameters Logs Alert Condition More Than Usual Parameter Metric Alert Promql Parameter] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Sequence[Get
Logs Alert Condition More Than Usual Parameter Related Extended Data] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- (Float) The threshold for the alert condition.
- timeframe str
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<Property Map>Parameters - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<Property Map>Promql Parameters - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Property Map>
- (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- (Float) The threshold for the alert condition.
- timeframe String
- (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:
GetLogsAlertConditionMoreThanUsualParameterMetricAlertParameter
- Arithmetic
Operator string - (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:
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator string - (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:
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator string - (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:
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator str - (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:
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric_
field str - (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 str - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionMoreThanUsualParameterMetricAlertPromqlParameter
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql_
text str - (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_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionMoreThanUsualParameterRelatedExtendedData
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup_
deadman_ strduration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
GetLogsAlertConditionNewValue
- Parameters
List<Get
Logs Alert Condition New Value Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- Parameters
[]Get
Logs Alert Condition New Value Parameter - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
List<Get
Logs Alert Condition New Value Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
Get
Logs Alert Condition New Value Parameter[] - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
Sequence[Get
Logs Alert Condition New Value Parameter] - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters List<Property Map>
- (List) The Less than alert condition parameters. Nested schema for parameters:
GetLogsAlertConditionNewValueParameter
- Cardinality
Fields List<string> - (List) 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> - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert List<GetParameters Logs Alert Condition New Value Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert List<GetPromql Parameters Logs Alert Condition New Value Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition New Value Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold double
- (Float) The threshold for the alert condition.
- Timeframe string
- (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 - (List) 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 - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert []GetParameters Logs Alert Condition New Value Parameter Metric Alert Parameter - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert []GetPromql Parameters Logs Alert Condition New Value Parameter Metric Alert Promql Parameter - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- []Get
Logs Alert Condition New Value Parameter Related Extended Data - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- (Float) The threshold for the alert condition.
- Timeframe string
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<GetParameters Logs Alert Condition New Value Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<GetPromql Parameters Logs Alert Condition New Value Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition New Value Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- (Float) The threshold for the alert condition.
- timeframe String
- (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[] - (List) 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[] - (List) 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
- ignore
Infinity boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert GetParameters Logs Alert Condition New Value Parameter Metric Alert Parameter[] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert GetPromql Parameters Logs Alert Condition New Value Parameter Metric Alert Promql Parameter[] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Get
Logs Alert Condition New Value Parameter Related Extended Data[] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- (Float) The threshold for the alert condition.
- timeframe string
- (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 Sequence[str] - (List) 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] - (List) 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
- ignore_
infinity bool - (Boolean) Should the evaluation ignore infinity value.
- metric_
alert_ Sequence[Getparameters Logs Alert Condition New Value Parameter Metric Alert Parameter] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Sequence[Getpromql_ parameters Logs Alert Condition New Value Parameter Metric Alert Promql Parameter] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Sequence[Get
Logs Alert Condition New Value Parameter Related Extended Data] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- (Float) The threshold for the alert condition.
- timeframe str
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<Property Map>Parameters - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<Property Map>Promql Parameters - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Property Map>
- (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- (Float) The threshold for the alert condition.
- timeframe String
- (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:
GetLogsAlertConditionNewValueParameterMetricAlertParameter
- Arithmetic
Operator string - (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:
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator string - (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:
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator string - (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:
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator str - (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:
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric_
field str - (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 str - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionNewValueParameterMetricAlertPromqlParameter
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql_
text str - (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_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionNewValueParameterRelatedExtendedData
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup_
deadman_ strduration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
GetLogsAlertConditionUniqueCount
- Parameters
List<Get
Logs Alert Condition Unique Count Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- Parameters
[]Get
Logs Alert Condition Unique Count Parameter - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
List<Get
Logs Alert Condition Unique Count Parameter> - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
Get
Logs Alert Condition Unique Count Parameter[] - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters
Sequence[Get
Logs Alert Condition Unique Count Parameter] - (List) The Less than alert condition parameters. Nested schema for parameters:
- parameters List<Property Map>
- (List) The Less than alert condition parameters. Nested schema for parameters:
GetLogsAlertConditionUniqueCountParameter
- Cardinality
Fields List<string> - (List) 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> - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert List<GetParameters Logs Alert Condition Unique Count Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert List<GetPromql Parameters Logs Alert Condition Unique Count Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition Unique Count Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold double
- (Float) The threshold for the alert condition.
- Timeframe string
- (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 - (List) 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 - (List) 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
- Ignore
Infinity bool - (Boolean) Should the evaluation ignore infinity value.
- Metric
Alert []GetParameters Logs Alert Condition Unique Count Parameter Metric Alert Parameter - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- Metric
Alert []GetPromql Parameters Logs Alert Condition Unique Count Parameter Metric Alert Promql Parameter - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- []Get
Logs Alert Condition Unique Count Parameter Related Extended Data - (List) Deadman configuration. Nested schema for related_extended_data:
- Relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- Threshold float64
- (Float) The threshold for the alert condition.
- Timeframe string
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<GetParameters Logs Alert Condition Unique Count Parameter Metric Alert Parameter> - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<GetPromql Parameters Logs Alert Condition Unique Count Parameter Metric Alert Promql Parameter> - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Get
Logs Alert Condition Unique Count Parameter Related Extended Data> - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Double
- (Float) The threshold for the alert condition.
- timeframe String
- (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[] - (List) 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[] - (List) 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
- ignore
Infinity boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert GetParameters Logs Alert Condition Unique Count Parameter Metric Alert Parameter[] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert GetPromql Parameters Logs Alert Condition Unique Count Parameter Metric Alert Promql Parameter[] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Get
Logs Alert Condition Unique Count Parameter Related Extended Data[] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe string - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold number
- (Float) The threshold for the alert condition.
- timeframe string
- (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 Sequence[str] - (List) 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] - (List) 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
- ignore_
infinity bool - (Boolean) Should the evaluation ignore infinity value.
- metric_
alert_ Sequence[Getparameters Logs Alert Condition Unique Count Parameter Metric Alert Parameter] - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric_
alert_ Sequence[Getpromql_ parameters Logs Alert Condition Unique Count Parameter Metric Alert Promql Parameter] - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- Sequence[Get
Logs Alert Condition Unique Count Parameter Related Extended Data] - (List) Deadman configuration. Nested schema for related_extended_data:
- relative_
timeframe str - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold float
- (Float) The threshold for the alert condition.
- timeframe str
- (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> - (List) 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> - (List) 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
- ignore
Infinity Boolean - (Boolean) Should the evaluation ignore infinity value.
- metric
Alert List<Property Map>Parameters - (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
- metric
Alert List<Property Map>Promql Parameters - (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
- List<Property Map>
- (List) Deadman configuration. Nested schema for related_extended_data:
- relative
Timeframe String - (String) The relative timeframe for time relative alerts.
- Constraints: Allowable values are:
hour_or_unspecified
,day
,week
,month
.
- Constraints: Allowable values are:
- threshold Number
- (Float) The threshold for the alert condition.
- timeframe String
- (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:
GetLogsAlertConditionUniqueCountParameterMetricAlertParameter
- Arithmetic
Operator string - (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:
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold doublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator string - (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:
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Sample
Threshold float64Percentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold DoublePercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator string - (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:
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field string - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold numberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator str - (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:
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric_
field str - (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 str - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample_
threshold_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator String - (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:
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- metric
Field String - (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 - (String) The metric source of the metric alert.
- Constraints: Allowable values are:
logs2metrics_or_unspecified
,prometheus
.
- Constraints: Allowable values are:
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- sample
Threshold NumberPercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionUniqueCountParameterMetricAlertPromqlParameter
- Arithmetic
Operator doubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null doublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- Arithmetic
Operator float64Modifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Non
Null float64Percentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Swap
Null boolValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator DoubleModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null DoublePercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator numberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null numberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text string - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null booleanValues - (Boolean) Should we swap null values with zero.
- arithmetic_
operator_ floatmodifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non_
null_ floatpercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql_
text str - (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_ floatpercentage - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap_
null_ boolvalues - (Boolean) Should we swap null values with zero.
- arithmetic
Operator NumberModifier - (Integer) The arithmetic operator of the metric promql alert.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- non
Null NumberPercentage - (Integer) Non null percentage of the evaluation.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- promql
Text String - (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 - (Integer) The threshold percentage.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- swap
Null BooleanValues - (Boolean) Should we swap null values with zero.
GetLogsAlertConditionUniqueCountParameterRelatedExtendedData
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- Cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman stringDuration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup_
deadman_ strduration - (String) 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 - (Boolean) Should we trigger deadman.
- cleanup
Deadman StringDuration - (String) 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 - (Boolean) Should we trigger deadman.
GetLogsAlertExpiration
GetLogsAlertFilter
- Alias string
- (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 - (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:
- Metadatas
List<Get
Logs Alert Filter Metadata> - (List) The metadata filters. Nested schema for metadata:
- Ratio
Alerts List<GetLogs Alert Filter Ratio Alert> - (List) 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>
- (List) 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
- (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
- (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 - (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:
- Metadatas
[]Get
Logs Alert Filter Metadata - (List) The metadata filters. Nested schema for metadata:
- Ratio
Alerts []GetLogs Alert Filter Ratio Alert - (List) 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
- (List) 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
- (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
- (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 - (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:
- metadatas
List<Get
Logs Alert Filter Metadata> - (List) The metadata filters. Nested schema for metadata:
- ratio
Alerts List<GetLogs Alert Filter Ratio Alert> - (List) 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>
- (List) 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
- (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
- (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 - (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:
- metadatas
Get
Logs Alert Filter Metadata[] - (List) The metadata filters. Nested schema for metadata:
- ratio
Alerts GetLogs Alert Filter Ratio Alert[] - (List) 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[]
- (List) 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
- (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
- (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 str - (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:
- metadatas
Sequence[Get
Logs Alert Filter Metadata] - (List) The metadata filters. Nested schema for metadata:
- ratio_
alerts Sequence[GetLogs Alert Filter Ratio Alert] - (List) 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]
- (List) 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
- (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
- (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 - (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:
- metadatas List<Property Map>
- (List) The metadata filters. Nested schema for metadata:
- ratio
Alerts List<Property Map> - (List) 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>
- (List) 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
- (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
GetLogsAlertFilterMetadata
- Applications List<string>
- (List) 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>
- (List) 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
- (List) 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
- (List) 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>
- (List) 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>
- (List) 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[]
- (List) 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[]
- (List) 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]
- (List) 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]
- (List) 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>
- (List) 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>
- (List) 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
GetLogsAlertFilterRatioAlert
- Alias string
- (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>
- (List) 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> - (List) 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>
- (List) 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:
- Subsystems List<string>
- (List) 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
- (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
- (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
- (List) 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 - (List) 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
- (List) 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:
- Subsystems []string
- (List) 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
- (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
- (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>
- (List) 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> - (List) 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>
- (List) 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:
- subsystems List<String>
- (List) 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
- (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
- (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[]
- (List) 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[] - (List) 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[]
- (List) 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:
- subsystems string[]
- (List) 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
- (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
- (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 Sequence[str]
- (List) 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] - (List) 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]
- (List) 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:
- subsystems Sequence[str]
- (List) 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
- (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
- (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>
- (List) 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> - (List) 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>
- (List) 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:
- subsystems List<String>
- (List) 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
- (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
GetLogsAlertIncidentSetting
- Notify
On string - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- Retriggering
Period doubleSeconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Use
As boolNotification Settings - (Boolean) Use these settings for all notificaion webhook.
- Notify
On string - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- Retriggering
Period float64Seconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Use
As boolNotification Settings - (Boolean) Use these settings for all notificaion webhook.
- notify
On String - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- retriggering
Period DoubleSeconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- use
As BooleanNotification Settings - (Boolean) Use these settings for all notificaion webhook.
- notify
On string - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- retriggering
Period numberSeconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- use
As booleanNotification Settings - (Boolean) Use these settings for all notificaion webhook.
- notify_
on str - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- retriggering_
period_ floatseconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- use_
as_ boolnotification_ settings - (Boolean) Use these settings for all notificaion webhook.
- notify
On String - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- retriggering
Period NumberSeconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- use
As BooleanNotification Settings - (Boolean) Use these settings for all notificaion webhook.
GetLogsAlertMetaLabel
- Key string
- (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
- (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
- (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
- (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
- (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
- (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
- (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
- (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
- (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 str
- (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
- (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
- (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
GetLogsAlertNotificationGroup
- Group
By List<string>Fields - (List) 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<Get
Logs Alert Notification Group Notification> - (List) 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 - (List) 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
[]Get
Logs Alert Notification Group Notification - (List) 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 - (List) 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<Get
Logs Alert Notification Group Notification> - (List) 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 - (List) 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
Get
Logs Alert Notification Group Notification[] - (List) 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 - (List) 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[Get
Logs Alert Notification Group Notification] - (List) 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 - (List) 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>
- (List) 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
GetLogsAlertNotificationGroupNotification
- Integration
Id double - (Integer) Integration ID.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Notify
On string - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- Recipients
List<Get
Logs Alert Notification Group Notification Recipient> - (List) Recipients. Nested schema for recipients:
- Retriggering
Period doubleSeconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Integration
Id float64 - (Integer) Integration ID.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- Notify
On string - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- Recipients
[]Get
Logs Alert Notification Group Notification Recipient - (List) Recipients. Nested schema for recipients:
- Retriggering
Period float64Seconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- integration
Id Double - (Integer) Integration ID.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- notify
On String - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- recipients
List<Get
Logs Alert Notification Group Notification Recipient> - (List) Recipients. Nested schema for recipients:
- retriggering
Period DoubleSeconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- integration
Id number - (Integer) Integration ID.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- notify
On string - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- recipients
Get
Logs Alert Notification Group Notification Recipient[] - (List) Recipients. Nested schema for recipients:
- retriggering
Period numberSeconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- integration_
id float - (Integer) Integration ID.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- notify_
on str - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- recipients
Sequence[Get
Logs Alert Notification Group Notification Recipient] - (List) Recipients. Nested schema for recipients:
- retriggering_
period_ floatseconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- integration
Id Number - (Integer) Integration ID.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
- notify
On String - (String) Notify on setting.
- Constraints: Allowable values are:
triggered_only
,triggered_and_resolved
.
- Constraints: Allowable values are:
- recipients List<Property Map>
- (List) Recipients. Nested schema for recipients:
- retriggering
Period NumberSeconds - (Integer) Retriggering period of the alert in seconds.
- Constraints: The maximum value is
4294967295
. The minimum value is0
.
- Constraints: The maximum value is
GetLogsAlertNotificationGroupNotificationRecipient
- Emails List<string>
- (List) 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
- (List) 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>
- (List) 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[]
- (List) 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]
- (List) 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>
- (List) 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
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.