4
4
* Copyright 2020-Present Datadog, Inc.
5
5
*/
6
6
import { SLOTimeSliceComparator } from "./SLOTimeSliceComparator" ;
7
+ import { SLOTimeSliceInterval } from "./SLOTimeSliceInterval" ;
7
8
import { SLOTimeSliceQuery } from "./SLOTimeSliceQuery" ;
8
9
9
10
import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
10
11
11
12
/**
12
13
* The time-slice condition, composed of 3 parts: 1. the metric timeseries query, 2. the comparator,
13
- * and 3. the threshold.
14
+ * and 3. the threshold. Optionally, a fourth part, the query interval, can be provided.
14
15
*/
15
16
export class SLOTimeSliceCondition {
16
17
/**
@@ -21,6 +22,12 @@ export class SLOTimeSliceCondition {
21
22
* The queries and formula used to calculate the SLI value.
22
23
*/
23
24
"query" : SLOTimeSliceQuery ;
25
+ /**
26
+ * The interval used when querying data, which defines the size of a time slice.
27
+ * Currently, only two values are allowed - 60 (1 minute) and 300 (5 minutes).
28
+ * If not provided, the value defaults to 300 (5 minutes).
29
+ */
30
+ "queryIntervalSeconds" ?: SLOTimeSliceInterval ;
24
31
/**
25
32
* The threshold value to which each SLI value will be compared.
26
33
*/
@@ -52,6 +59,11 @@ export class SLOTimeSliceCondition {
52
59
type : "SLOTimeSliceQuery" ,
53
60
required : true ,
54
61
} ,
62
+ queryIntervalSeconds : {
63
+ baseName : "query_interval_seconds" ,
64
+ type : "SLOTimeSliceInterval" ,
65
+ format : "int32" ,
66
+ } ,
55
67
threshold : {
56
68
baseName : "threshold" ,
57
69
type : "number" ,
0 commit comments