11change point stationary with timestamp argument
2- # required_capability: change_point
2+ required_capability: change_point
33
44FROM k8s
55 | STATS count=COUNT() BY timestamp=BUCKET(@timestamp, 1 minute)
@@ -12,7 +12,7 @@ cp:keyword
1212
1313
1414change point stationary without timestamp argument
15- # required_capability: change_point
15+ required_capability: change_point
1616
1717FROM k8s
1818 | STATS count=COUNT() BY @timestamp=BUCKET(@timestamp, 1 minute)
@@ -25,7 +25,7 @@ cp:keyword
2525
2626
2727change point spike (long)
28- # required_capability: change_point
28+ required_capability: change_point
2929
3030FROM k8s
3131 | STATS count=COUNT() BY timestamp=BUCKET(@timestamp, 1 minute)
@@ -39,7 +39,7 @@ cp:keyword
3939
4040
4141change point spike (int)
42- # required_capability: change_point
42+ required_capability: change_point
4343
4444FROM k8s
4545 | STATS count=COUNT() BY timestamp=BUCKET(@timestamp, 1 minute)
@@ -53,7 +53,7 @@ cp:keyword
5353
5454
5555change point spike (double)
56- # required_capability: change_point
56+ required_capability: change_point
5757
5858FROM k8s
5959 | STATS count=COUNT() BY timestamp=BUCKET(@timestamp, 1 minute)
@@ -67,7 +67,7 @@ cp:keyword
6767
6868
6969change point grouping with timestamp argument
70- # required_capability: change_point
70+ required_capability: change_point
7171
7272FROM k8s
7373 | STATS count=COUNT() BY timestamp=BUCKET(@timestamp, 1 minute), cluster
@@ -83,7 +83,7 @@ cp:keyword
8383
8484
8585change point grouping without timestamp argument
86- # required_capability: change_point
86+ required_capability: change_point
8787
8888FROM k8s
8989 | STATS count=COUNT() BY @timestamp=BUCKET(@timestamp, 1 minute), cluster
0 commit comments