3
3
select (' foo' ) //
4
4
select (' foo' ).where (' key=value' )
5
5
select (' foo' ).where (' key~val.*' )
6
- select (' foo' ).where (' host=srv1' ,' dc~(gra|rbx)' )
6
+ select (' foo' ).where ([' host=srv1' , ' dc~(gra|rbx)' ])
7
+ select (' foo' ).where ([' host=srv1' , ' dc~(gra|rbx)' ,' key~val.*' ,' key=value' ])
7
8
8
9
// Explicit Auth context
9
- connect (' API' , ' TOKEN' ).select (' foo' )
10
-
10
+ connect (warp10, ' API' , ' TOKEN' )
11
+ connect (warp10, ' API' , ' TOKEN' ).select (' foo' )
12
+ connect (prometheus, ' API' , ' USER' , ' PWD' ).select (' foo' )
11
13
12
14
// Get by Date
13
15
select (' foo' ).from (@ISO8601, to=@ISO8601) // Date are ISO8601, from is oldest and to is newest. to() is optional
@@ -35,19 +37,24 @@ select('foo').where('dc=~(gra|rbx)','rack=001')
35
37
36
38
// Downsample / bucketize
37
39
select (' foo' ).sampleBy (@bucket_span, @aggregator, @args...)
40
+ select (' foo' ).sampleBy (@bucket_count, @aggregator, @args...)
38
41
select (' foo' ).sampleBy (5m, max)
39
42
select (' foo' ).sampleBy (5m, mean) // 5m span from 12:03 : 12:05, 12:00, 11:55 / Absolute is default
40
43
select (' foo' ).sampleBy (5m, mean, relative=true ) // 5m span from 12:03 : 12:03, 11:58, 11:53
41
44
42
- select (' foo' ).sample (mean)
43
-
44
- // Auto Fill
45
+ // Fill
45
46
select (' foo' ).sampleBy (1h, mean) // Default fill policy : interpolate + fillprefious + fillnext
46
- select (' foo' ).sampleBy (1h, mean, fill=next)
47
- select (' foo' ).sampleBy (1h, mean, fill=previous)
48
- select (' foo' ).sampleBy (1h, mean, fill=auto)
49
- select (' foo' ).sampleBy (1h, mean, fill=interpolate)
50
- select (' foo' ).sampleBy (1h, mean, fill=none)
47
+ select (' foo' ).sampleBy (1h, mean, fill=' next' )
48
+ select (' foo' ).sampleBy (1h, mean, fill=' previous' )
49
+ select (' foo' ).sampleBy (1h, mean, fill=' auto' )
50
+ select (' foo' ).sampleBy (1h, mean, fill=' interpolate' )
51
+ select (' foo' ).sampleBy (1h, mean, fill=' none' )
52
+
53
+ // Sampling with expected data-points count
54
+ select (' foo' ).sampleBy (50 , mean) // Will return ~50 points spaced equally
55
+
56
+ // Complex sampling
57
+ select (" foo" ).sampleBy (span=1m, aggregator=" mean" , fill=[" interpolate" , ' next' , " previous" ], relative=false )
51
58
52
59
// Aggregate / reduce
53
60
select (' foo' ).groupBy (@tag_key, @aggregator) // groupBy() applies a sampleBy('1m', last) if no sampling has already been done
@@ -72,9 +79,11 @@ select('foo').greaterThan(100) // filter values above 100
72
79
select (' foo' ).greaterOrEqual (0 )
73
80
select (' foo' ).lessThan (10 )
74
81
select (' foo' ).lessOrEqual (0 )
75
- select (' foo' ).max (10 )
76
- select (' foo' ).min (0 )
77
- select (' foo' ).mean (pre=1 , post=1 )
82
+ select (' foo' ).maxWith (10 )
83
+ select (' foo' ).minWith (0 )
84
+ select (' foo' ).window (mean, pre=1 , post=1 )
85
+ select (' foo' ).window (min, pre=1 , post=1 )
86
+ select (' foo' ).window (max, pre=1m)
78
87
79
88
// example :
80
89
select (' foo' ).greaterThan (100 ).lessThan (10 ).equal (0 )
0 commit comments