Skip to content
This repository was archived by the owner on Sep 7, 2021. It is now read-only.

Commit c35d41b

Browse files
author
Aurelien Hebert
committed
fix(spec): update outdated spec lines
Signed-off-by: Aurelien Hebert <[email protected]>
1 parent 82de12c commit c35d41b

File tree

1 file changed

+23
-14
lines changed

1 file changed

+23
-14
lines changed

spec/spec.md

+23-14
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
select('foo') //
44
select('foo').where('key=value')
55
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'])
78

89
// 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')
1113

1214
// Get by Date
1315
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')
3537

3638
// Downsample / bucketize
3739
select('foo').sampleBy(@bucket_span, @aggregator, @args...)
40+
select('foo').sampleBy(@bucket_count, @aggregator, @args...)
3841
select('foo').sampleBy(5m, max)
3942
select('foo').sampleBy(5m, mean) // 5m span from 12:03 : 12:05, 12:00, 11:55 / Absolute is default
4043
select('foo').sampleBy(5m, mean, relative=true) // 5m span from 12:03 : 12:03, 11:58, 11:53
4144

42-
select('foo').sample(mean)
43-
44-
// Auto Fill
45+
// Fill
4546
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)
5158

5259
// Aggregate / reduce
5360
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
7279
select('foo').greaterOrEqual(0)
7380
select('foo').lessThan(10)
7481
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)
7887

7988
// example :
8089
select('foo').greaterThan(100).lessThan(10).equal(0)

0 commit comments

Comments
 (0)