-
Notifications
You must be signed in to change notification settings - Fork 18
/
example_client_test.go
915 lines (759 loc) · 32.5 KB
/
example_client_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
package redis_timeseries_go_test
import (
"fmt"
redistimeseries "github.com/RedisTimeSeries/redistimeseries-go"
"github.com/gomodule/redigo/redis"
"log"
"time"
)
// exemplifies the NewClientFromPool function
//nolint:errcheck
func ExampleNewClientFromPool() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
client.Add("ts", 1, 5)
datapoints, _ := client.RangeWithOptions("ts", 0, 1000, redistimeseries.DefaultRangeOptions)
fmt.Println(datapoints[0])
// Output: {1 5}
}
// Exemplifies the usage of CreateKeyWithOptions function with a duplicate policy of LAST (override with latest value)
// nolint:errcheck
func ExampleClient_CreateKeyWithOptions() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
client.CreateKeyWithOptions("time-serie-last-policy", redistimeseries.CreateOptions{DuplicatePolicy: redistimeseries.LastDuplicatePolicy})
// Add duplicate timestamp just to ensure it obeys the duplicate policy
client.Add("time-serie-last-policy", 4, 2.0)
client.Add("time-serie-last-policy", 4, 10.0)
// Retrieve the latest data point
latestDatapoint, _ := client.Get("time-serie-last-policy")
fmt.Printf("Latest datapoint: timestamp=%d value=%f\n", latestDatapoint.Timestamp, latestDatapoint.Value)
// Output:
// Latest datapoint: timestamp=4 value=10.000000
}
// Exemplifies the usage of CreateKeyWithOptions function with a retention time of 1 hour
// nolint:errcheck
func ExampleClient_CreateKeyWithOptions_retentionTime() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client")
// get the default options and set the retention time
options := redistimeseries.DefaultCreateOptions
options.RetentionMSecs = time.Hour
client.CreateKeyWithOptions("time-series-example-retention-time", options)
client.Add("time-series-example-retention-time", 1, 1)
client.Add("time-series-example-retention-time", 2, 2)
// Retrieve the latest data point
latestDatapoint, _ := client.Get("time-series-example-retention-time")
fmt.Printf("Latest datapoint: timestamp=%d value=%f\n", latestDatapoint.Timestamp, latestDatapoint.Value)
// Output:
// Latest datapoint: timestamp=2 value=2.000000
}
// Exemplifies the usage of Add function with a time-series created with the default options
// nolint:errcheck
func ExampleClient_Add() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
labels := map[string]string{
"machine": "machine-1",
"az": "us-west-2",
}
// get the default options and set the time-serie labels
options := redistimeseries.DefaultCreateOptions
options.Labels = labels
client.CreateKeyWithOptions("time-serie-add", options)
client.Add("time-serie-add", 1, 2.0)
client.Add("time-serie-add", 2, 4.0)
// Retrieve the latest data point
latestDatapoint, _ := client.Get("time-serie-add")
fmt.Printf("Latest datapoint: timestamp=%d value=%f\n", latestDatapoint.Timestamp, latestDatapoint.Value)
// Output:
// Latest datapoint: timestamp=2 value=4.000000
}
// Exemplifies the usage of Add function for back filling - Add samples to a time series where the time of the sample is older than the newest sample in the series
// nolint:errcheck
func ExampleClient_Add_backFilling() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// get the default options and set the time-serie labels
options := redistimeseries.DefaultCreateOptions
client.CreateKeyWithOptions("time-serie-add-back-filling", options)
client.Add("time-serie-add-back-filling", 1, 1)
client.Add("time-serie-add-back-filling", 2, 1)
client.Add("time-serie-add-back-filling", 4, 1)
// Add sample with timestamp ( 3 ) where the time of the sample is older than the newest sample in the series ( 4 )
client.Add("time-serie-add-back-filling", 3, 1)
// Retrieve the time-series data points
datapoints, _ := client.RangeWithOptions("time-serie-add-back-filling", 0, 1000, redistimeseries.DefaultRangeOptions)
fmt.Printf("Datapoints: %v\n", datapoints)
// Output:
// Datapoints: [{1 1} {2 1} {3 1} {4 1}]
}
// Exemplifies the usage of Add function with a duplicate policy of LAST (override with latest value)
// nolint:errcheck
func ExampleClient_Add_duplicateDatapointsLastDuplicatePolicy() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// get the default options and set the duplicate policy to LAST (override with latest value)
options := redistimeseries.DefaultCreateOptions
options.DuplicatePolicy = redistimeseries.LastDuplicatePolicy
client.CreateKeyWithOptions("time-series-add-duplicate-last", options)
client.Add("time-series-add-duplicate-last", 1, 1.0)
client.Add("time-series-add-duplicate-last", 1, 10.0)
// Retrieve the latest data point
latestDatapoint, _ := client.Get("time-series-add-duplicate-last")
fmt.Printf("Latest datapoint: timestamp=%d value=%f\n", latestDatapoint.Timestamp, latestDatapoint.Value)
// Output:
// Latest datapoint: timestamp=1 value=10.000000
}
// Exemplifies the usage of Add function with a duplicate policy of MIN (override with min value)
// nolint:errcheck
func ExampleClient_Add_minDuplicatePolicy() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// get the default options and set the duplicate policy to MIN (override with latest value)
options := redistimeseries.DefaultCreateOptions
options.DuplicatePolicy = redistimeseries.MinDuplicatePolicy
client.CreateKeyWithOptions("time-series-add-duplicate-min", options)
client.Add("time-series-add-duplicate-min", 1, 1.0)
client.Add("time-series-add-duplicate-min", 1, 10.0)
// Retrieve the minimal data point
minDatapoint, _ := client.Get("time-series-add-duplicate-min")
fmt.Printf("Minimal datapoint: timestamp=%d value=%f\n", minDatapoint.Timestamp, minDatapoint.Value)
// Output:
// Minimal datapoint: timestamp=1 value=1.000000
}
// Exemplifies the usage of AddWithOptions function with the default options and some additional time-serie labels
// nolint:errcheck
func ExampleClient_AddWithOptions() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client")
labels := map[string]string{
"machine": "machine-1",
"az": "us-west-2",
}
// get the default options and set the time-serie labels
options := redistimeseries.DefaultCreateOptions
options.Labels = labels
client.AddWithOptions("time-series-example-add", 1, 1, options)
client.AddWithOptions("time-series-example-add", 2, 2, options)
// Retrieve the latest data point
latestDatapoint, _ := client.Get("time-series-example-add")
fmt.Printf("Latest datapoint: timestamp=%d value=%f\n", latestDatapoint.Timestamp, latestDatapoint.Value)
// Output:
// Latest datapoint: timestamp=2 value=2.000000
}
// Exemplifies the usage of AddWithOptions function with a duplicate policy of LAST (override with latest value)
// and with MIN (override with minimal value)
// nolint:errcheck
func ExampleClient_AddWithOptions_duplicateDatapointsLastDuplicatePolicy() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client")
labels := map[string]string{
"machine": "machine-1",
"az": "us-west-2",
}
// get the default options and set the duplicate policy to LAST (override with latest value)
options := redistimeseries.DefaultCreateOptions
options.DuplicatePolicy = redistimeseries.LastDuplicatePolicy
options.Labels = labels
client.AddWithOptions("time-series-example-duplicate", 1, 1, options)
client.AddWithOptions("time-series-example-duplicate", 1, 10, options)
// Retrieve the latest data point
latestDatapoint, _ := client.Get("time-series-example-duplicate")
// change the duplicate policy to MIN
options.DuplicatePolicy = redistimeseries.MinDuplicatePolicy
// The current value will not be overridden because the new added value is higher
client.AddWithOptions("time-series-example-duplicate", 1, 15, options)
// Retrieve the latest data point
minDatapoint, _ := client.Get("time-series-example-duplicate")
fmt.Printf("Latest datapoint: timestamp=%d value=%f\n", latestDatapoint.Timestamp, latestDatapoint.Value)
fmt.Printf("Minimal datapoint: timestamp=%d value=%f\n", minDatapoint.Timestamp, minDatapoint.Value)
// Output:
// Latest datapoint: timestamp=1 value=10.000000
// Minimal datapoint: timestamp=1 value=10.000000
}
// Exemplifies the usage of AddWithOptions function with a duplicate policy of MAX (only override if the value is higher than the existing value)
// nolint:errcheck
func ExampleClient_AddWithOptions_duplicateDatapointsMaxDuplicatePolicy() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client")
labels := map[string]string{
"machine": "machine-1",
"az": "us-west-2",
}
// get the default options and set the duplicate policy to MAX (only override if the value is higher than the existing value)
options := redistimeseries.DefaultCreateOptions
options.DuplicatePolicy = redistimeseries.MaxDuplicatePolicy
options.Labels = labels
client.AddWithOptions("time-series-example-duplicate-max", 1, 10.0, options)
// this should not override the value given that the previous one ( 10.0 ) is greater than the new one we're trying to add
client.AddWithOptions("time-series-example-duplicate-max", 1, 5.0, options)
// Retrieve the latest data point
latestDatapoint, _ := client.Get("time-series-example-duplicate-max")
fmt.Printf("Latest datapoint: timestamp=%d value=%f\n", latestDatapoint.Timestamp, latestDatapoint.Value)
// Output:
// Latest datapoint: timestamp=1 value=10.000000
}
// Exemplifies the usage of AddWithOptions function for back filling - Add samples to a time series where the time of the sample is older than the newest sample in the series
// nolint:errcheck
func ExampleClient_AddWithOptions_backFilling() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client")
labels := map[string]string{
"machine": "machine-1",
"az": "us-west-2",
}
// use the default options
options := redistimeseries.DefaultCreateOptions
options.Labels = labels
client.AddWithOptions("time-series-example-back-filling", 1, 1, options)
client.AddWithOptions("time-series-example-back-filling", 2, 1, options)
client.AddWithOptions("time-series-example-back-filling", 4, 1, options)
// Add sample with timestamp ( 3 ) where the time of the sample is older than the newest sample in the series ( 4 )
client.AddWithOptions("time-series-example-back-filling", 3, 1, options)
// Retrieve the time-series data points
datapoints, _ := client.RangeWithOptions("time-series-example-back-filling", 0, 1000, redistimeseries.DefaultRangeOptions)
fmt.Printf("Datapoints: %v\n", datapoints)
// Output:
// Datapoints: [{1 1} {2 1} {3 1} {4 1}]
}
// Exemplifies the usage of RangeWithOptions function
// nolint:errcheck
func ExampleClient_RangeWithOptions() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
for ts := 1; ts < 10; ts++ {
client.Add("ts-1", int64(ts), float64(ts))
}
datapoints, _ := client.RangeWithOptions("ts-1", 0, 1000, redistimeseries.DefaultRangeOptions)
fmt.Printf("Datapoints: %v\n", datapoints)
// Output:
// Datapoints: [{1 1} {2 2} {3 3} {4 4} {5 5} {6 6} {7 7} {8 8} {9 9}]
}
// Exemplifies the usage of RangeWithOptions function, while changing the reference timestamp on which a bucket is defined.
// nolint:errcheck
func ExampleClient_RangeWithOptions_aggregationMax() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
for ts := 1; ts < 10; ts++ {
client.Add("ts-1", int64(ts), float64(ts))
}
datapoints, _ := client.RangeWithOptions("ts-1", 0, 1000, *redistimeseries.NewRangeOptions().SetAggregation(redistimeseries.MaxAggregation, 5))
fmt.Printf("Datapoints: %v\n", datapoints)
// Output:
// Datapoints: [{0 4} {5 9}]
}
// Exemplifies the usage of RangeWithOptions function, while changing the reference timestamp on which a bucket is defined.
// nolint:errcheck
func ExampleClient_RangeWithOptions_aggregationAlign() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
for ts := 1; ts < 10; ts++ {
client.Add("ts-1", int64(ts), float64(ts))
}
datapoints, _ := client.RangeWithOptions("ts-1", 0, 1000, *redistimeseries.NewRangeOptions().SetAggregation(redistimeseries.CountAggregation, 2).SetAlign(1))
fmt.Printf("Datapoints: %v\n", datapoints)
// Output:
// Datapoints: [{1 2} {3 2} {5 2} {7 2} {9 1}]
}
// nolint
// Exemplifies the usage of ReverseRangeWithOptions function
func ExampleClient_ReverseRangeWithOptions() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
for ts := 1; ts < 10; ts++ {
client.Add("ts-2", int64(ts), float64(ts))
}
datapoints, _ := client.ReverseRangeWithOptions("ts-2", 0, 1000, redistimeseries.DefaultRangeOptions)
fmt.Printf("Datapoints: %v\n", datapoints)
// Output:
// Datapoints: [{9 9} {8 8} {7 7} {6 6} {5 5} {4 4} {3 3} {2 2} {1 1}]
}
// nolint
// Exemplifies the usage of ReverseRangeWithOptions function while filtering value
func ExampleClient_ReverseRangeWithOptions_filterByValue() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
for ts := 1; ts < 10; ts++ {
client.Add("ts-2", int64(ts), float64(ts))
}
datapoints, _ := client.ReverseRangeWithOptions("ts-2", 0, 1000, *redistimeseries.NewRangeOptions().SetFilterByValue(5, 50))
fmt.Printf("Datapoints: %v\n", datapoints)
// Output:
// Datapoints: [{9 9} {8 8} {7 7} {6 6} {5 5}]
}
// nolint
// Exemplifies the usage of ReverseRangeWithOptions function while filtering by timestamp
func ExampleClient_ReverseRangeWithOptions_filterByTs() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
for ts := 1; ts < 10; ts++ {
client.Add("ts-2", int64(ts), float64(ts))
}
datapoints, _ := client.ReverseRangeWithOptions("ts-2", 0, 1000, *redistimeseries.NewRangeOptions().SetFilterByTs([]int64{1, 2, 3, 4, 5}))
fmt.Printf("Datapoints: %v\n", datapoints)
// Output:
// Datapoints: [{5 5} {4 4} {3 3} {2 2} {1 1}]
}
// nolint
// Exemplifies the usage of MultiRangeWithOptions function.
func ExampleClient_MultiRangeWithOptions() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// ensure clean DB
client.FlushAll()
labels1 := map[string]string{
"machine": "machine-1",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-1", 2, 1.0, redistimeseries.CreateOptions{Labels: labels1})
client.Add("time-serie-1", 4, 2.0)
labels2 := map[string]string{
"machine": "machine-2",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-2", 1, 5.0, redistimeseries.CreateOptions{Labels: labels2})
client.Add("time-serie-2", 4, 10.0)
ranges, _ := client.MultiRangeWithOptions(1, 10, redistimeseries.DefaultMultiRangeOptions, "az=us-east-1")
fmt.Printf("Ranges: %v\n", ranges)
// Output:
// Ranges: [{time-serie-1 map[] [{2 1} {4 2}]} {time-serie-2 map[] [{1 5} {4 10}]}]
}
// nolint
// Exemplifies the usage of MultiRangeWithOptions function.
// grouping multiple time-series
func ExampleClient_MultiRangeWithOptions_groupByReduce() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// ensure clean DB
client.FlushAll()
labels1 := map[string]string{
"machine": "machine-1",
"az": "us-east-1",
"team": "team-1",
}
client.AddWithOptions("time-serie-1", 2, 1.0, redistimeseries.CreateOptions{Labels: labels1})
client.Add("time-serie-1", 4, 2.0)
labels2 := map[string]string{
"machine": "machine-2",
"az": "us-east-1",
"team": "team-2",
}
client.AddWithOptions("time-serie-2", 1, 5.0, redistimeseries.CreateOptions{Labels: labels2})
client.Add("time-serie-2", 4, 10.0)
labels3 := map[string]string{
"machine": "machine-3",
"az": "us-east-1",
"team": "team-2",
}
client.AddWithOptions("time-serie-3", 1, 55.0, redistimeseries.CreateOptions{Labels: labels3})
client.Add("time-serie-3", 4, 99.0)
// Find out the total resources usage by team
ranges, _ := client.MultiRangeWithOptions(1, 10, *redistimeseries.NewMultiRangeOptions().SetWithLabels(true).SetGroupByReduce("team", redistimeseries.SumReducer), "az=us-east-1")
fmt.Printf("Sum of usage by team: %v\n", ranges)
// Output:
// Sum of usage by team: [{team=team-1 map[__reducer__:sum __source__:time-serie-1 team:team-1] [{2 1} {4 2}]} {team=team-2 map[__reducer__:sum __source__:time-serie-2,time-serie-3 team:team-2] [{1 60} {4 109}]}]
}
// Exemplifies the usage of MultiRangeWithOptions function,
// filtering the result by specific timestamps
// nolint:errcheck
func ExampleClient_MultiRangeWithOptions_filterByTs() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// ensure clean DB
client.FlushAll()
labels1 := map[string]string{
"machine": "machine-1",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-1", 2, 1.0, redistimeseries.CreateOptions{Labels: labels1})
client.Add("time-serie-1", 4, 2.0)
labels2 := map[string]string{
"machine": "machine-2",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-2", 1, 5.0, redistimeseries.CreateOptions{Labels: labels2})
client.Add("time-serie-2", 4, 10.0)
ranges, _ := client.MultiRangeWithOptions(1, 10, *redistimeseries.NewMultiRangeOptions().SetFilterByTs([]int64{1, 2}), "az=us-east-1")
fmt.Printf("Ranges: %v\n", ranges)
// Output:
// Ranges: [{time-serie-1 map[] [{2 1}]} {time-serie-2 map[] [{1 5}]}]
}
// Exemplifies the usage of MultiRangeWithOptions function,
// filtering the result by value using minimum and maximum.
// nolint:errcheck
func ExampleClient_MultiRangeWithOptions_filterByValue() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// ensure the DB is empty
client.FlushAll()
labels1 := map[string]string{
"machine": "machine-1",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-1", 2, 1.0, redistimeseries.CreateOptions{Labels: labels1})
client.Add("time-serie-1", 4, 2.0)
labels2 := map[string]string{
"machine": "machine-2",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-2", 1, 2.0, redistimeseries.CreateOptions{Labels: labels2})
client.Add("time-serie-2", 4, 10.0)
ranges, _ := client.MultiRangeWithOptions(1, 10, *redistimeseries.NewMultiRangeOptions().SetFilterByValue(1, 5), "az=us-east-1")
fmt.Printf("Ranges: %v\n", ranges)
// Output:
// Ranges: [{time-serie-1 map[] [{2 1} {4 2}]} {time-serie-2 map[] [{1 2}]}]
}
// Exemplifies the usage of MultiRangeWithOptions function,
// filtering the returned labels.
// nolint:errcheck
func ExampleClient_MultiRangeWithOptions_selectedLabels() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// ensure the DB is empty
client.FlushAll()
labels1 := map[string]string{
"machine": "machine-1",
"team": "SF-1",
"location": "SF",
"az": "us-east-1",
}
client.AddWithOptions("selected-labels-ex-time-serie-1", 2, 1.0, redistimeseries.CreateOptions{Labels: labels1})
client.Add("selected-labels-ex-time-serie-1", 4, 2.0)
labels2 := map[string]string{
"machine": "machine-2",
"team": "NY-1",
"location": "NY",
"az": "us-east-1",
}
client.AddWithOptions("selected-labels-ex-time-serie-2", 1, 10.0, redistimeseries.CreateOptions{Labels: labels2})
client.Add("selected-labels-ex-time-serie-2", 4, 15.0)
ranges, _ := client.MultiRangeWithOptions(1, 10, *redistimeseries.NewMultiRangeOptions().SetSelectedLabels([]string{"az", "location"}), "az=us-east-1")
fmt.Printf("Ranges: %v\n", ranges)
// Output:
// Ranges: [{selected-labels-ex-time-serie-1 map[az:us-east-1 location:SF] [{2 1} {4 2}]} {selected-labels-ex-time-serie-2 map[az:us-east-1 location:NY] [{1 10} {4 15}]}]
}
// Exemplifies the usage of MultiReverseRangeWithOptions function.
// nolint:errcheck
func ExampleClient_MultiReverseRangeWithOptions() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// ensure the DB is empty
client.FlushAll()
labels1 := map[string]string{
"machine": "machine-1",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-1", 2, 1.0, redistimeseries.CreateOptions{Labels: labels1})
client.Add("time-serie-1", 4, 2.0)
labels2 := map[string]string{
"machine": "machine-2",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-2", 1, 5.0, redistimeseries.CreateOptions{Labels: labels2})
client.Add("time-serie-2", 4, 10.0)
ranges, _ := client.MultiReverseRangeWithOptions(1, 10, redistimeseries.DefaultMultiRangeOptions, "az=us-east-1")
fmt.Printf("Ranges: %v\n", ranges)
// Output:
// Ranges: [{time-serie-1 map[] [{4 2} {2 1}]} {time-serie-2 map[] [{4 10} {1 5}]}]
}
// Exemplifies the usage of MultiReverseRangeWithOptions function,
// filtering the result by specific timestamps
// nolint:errcheck
func ExampleClient_MultiReverseRangeWithOptions_filterByTs() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
labels1 := map[string]string{
"machine": "machine-1",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-1", 2, 1.0, redistimeseries.CreateOptions{Labels: labels1})
client.Add("time-serie-1", 4, 2.0)
labels2 := map[string]string{
"machine": "machine-2",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-2", 1, 5.0, redistimeseries.CreateOptions{Labels: labels2})
client.Add("time-serie-2", 4, 10.0)
ranges, _ := client.MultiReverseRangeWithOptions(1, 10, *redistimeseries.NewMultiRangeOptions().SetFilterByTs([]int64{1, 2}), "az=us-east-1")
fmt.Printf("Ranges: %v\n", ranges)
// Output:
// Ranges: [{time-serie-1 map[] [{2 1}]} {time-serie-2 map[] [{1 5}]}]
}
// Exemplifies the usage of MultiReverseRangeWithOptions function,
// filtering the result by value using minimum and maximum.
// nolint:errcheck
func ExampleClient_MultiReverseRangeWithOptions_filterByValue() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// ensure the DB is empty
client.FlushAll()
labels1 := map[string]string{
"machine": "machine-1",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-1", 2, 1.0, redistimeseries.CreateOptions{Labels: labels1})
client.Add("time-serie-1", 4, 2.0)
labels2 := map[string]string{
"machine": "machine-2",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-2", 1, 2.0, redistimeseries.CreateOptions{Labels: labels2})
client.Add("time-serie-2", 4, 10.0)
ranges, _ := client.MultiReverseRangeWithOptions(1, 10, *redistimeseries.NewMultiRangeOptions().SetFilterByValue(1, 5), "az=us-east-1")
fmt.Printf("Ranges: %v\n", ranges)
// Output:
// Ranges: [{time-serie-1 map[] [{4 2} {2 1}]} {time-serie-2 map[] [{1 2}]}]
}
// Exemplifies the usage of MultiReverseRangeWithOptions function,
// filtering the returned labels.
// nolint:errcheck
func ExampleClient_MultiReverseRangeWithOptions_selectedLabels() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// ensure the DB is empty
client.FlushAll()
labels1 := map[string]string{
"machine": "machine-1",
"team": "SF-1",
"location": "SF",
"az": "us-east-1",
}
client.AddWithOptions("selected-labels-ex-time-serie-1", 2, 1.0, redistimeseries.CreateOptions{Labels: labels1})
client.Add("selected-labels-ex-time-serie-1", 4, 2.0)
labels2 := map[string]string{
"machine": "machine-2",
"team": "NY-1",
"location": "NY",
"az": "us-east-1",
}
client.AddWithOptions("selected-labels-ex-time-serie-2", 1, 10.0, redistimeseries.CreateOptions{Labels: labels2})
client.Add("selected-labels-ex-time-serie-2", 4, 15.0)
ranges, _ := client.MultiReverseRangeWithOptions(1, 10, *redistimeseries.NewMultiRangeOptions().SetSelectedLabels([]string{"az", "location"}), "az=us-east-1")
fmt.Printf("Ranges: %v\n", ranges)
// Output:
// Ranges: [{selected-labels-ex-time-serie-1 map[az:us-east-1 location:SF] [{4 2} {2 1}]} {selected-labels-ex-time-serie-2 map[az:us-east-1 location:NY] [{4 15} {1 10}]}]
}
//nolint:errcheck
// Exemplifies the usage of MultiGetWithOptions function while using the default MultiGetOptions and while using user defined MultiGetOptions.
func ExampleClient_MultiGetWithOptions() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// ensure the DB is empty
client.FlushAll()
labels1 := map[string]string{
"machine": "machine-1",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-1", 2, 1.0, redistimeseries.CreateOptions{Labels: labels1})
client.Add("time-serie-1", 4, 2.0)
labels2 := map[string]string{
"machine": "machine-2",
"az": "us-east-1",
}
client.AddWithOptions("time-serie-2", 1, 5.0, redistimeseries.CreateOptions{Labels: labels2})
client.Add("time-serie-2", 4, 10.0)
ranges, _ := client.MultiGetWithOptions(redistimeseries.DefaultMultiGetOptions, "az=us-east-1")
rangesWithLabels, _ := client.MultiGetWithOptions(*redistimeseries.NewMultiGetOptions().SetWithLabels(true), "az=us-east-1")
fmt.Printf("Ranges: %v\n", ranges)
fmt.Printf("Ranges with labels: %v\n", rangesWithLabels)
// Output:
// Ranges: [{time-serie-1 map[] [{4 2}]} {time-serie-2 map[] [{4 10}]}]
// Ranges with labels: [{time-serie-1 map[az:us-east-1 machine:machine-1] [{4 2}]} {time-serie-2 map[az:us-east-1 machine:machine-2] [{4 10}]}]
}
// Exemplifies the usage of MultiAdd.
func ExampleClient_MultiAdd() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
labels1 := map[string]string{
"machine": "machine-1",
"az": "us-east-1",
}
labels2 := map[string]string{
"machine": "machine-2",
"az": "us-east-1",
}
err := client.CreateKeyWithOptions("timeserie-1", redistimeseries.CreateOptions{Labels: labels1})
if err != nil {
log.Fatal(err)
}
err = client.CreateKeyWithOptions("timeserie-2", redistimeseries.CreateOptions{Labels: labels2})
if err != nil {
log.Fatal(err)
}
// Adding multiple datapoints to multiple series
datapoints := []redistimeseries.Sample{
{"timeserie-1", redistimeseries.DataPoint{1, 10.5}},
{"timeserie-1", redistimeseries.DataPoint{2, 40.5}},
{"timeserie-2", redistimeseries.DataPoint{1, 60.5}},
}
timestamps, _ := client.MultiAdd(datapoints...)
fmt.Printf("Example adding multiple datapoints to multiple series. Added timestamps: %v\n", timestamps)
// Adding multiple datapoints to the same serie
datapointsSameSerie := []redistimeseries.Sample{
{"timeserie-1", redistimeseries.DataPoint{3, 10.5}},
{"timeserie-1", redistimeseries.DataPoint{4, 40.5}},
{"timeserie-1", redistimeseries.DataPoint{5, 60.5}},
}
timestampsSameSerie, _ := client.MultiAdd(datapointsSameSerie...)
fmt.Printf("Example of adding multiple datapoints to the same serie. Added timestamps: %v\n", timestampsSameSerie)
// Output:
// Example adding multiple datapoints to multiple series. Added timestamps: [1 2 1]
// Example of adding multiple datapoints to the same serie. Added timestamps: [3 4 5]
}
// exemplifies the usage of DeleteSerie function
//nolint:errcheck
func ExampleClient_DeleteSerie() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// Create serie and add datapoint
client.Add("ts", 1, 5)
// Query the serie
datapoints, _ := client.RangeWithOptions("ts", 0, 1000, redistimeseries.DefaultRangeOptions)
fmt.Println(datapoints[0])
// Output: {1 5}
// Delete the serie
client.DeleteSerie("ts")
}
// exemplifies the usage of DeleteRange function
//nolint:errcheck
func ExampleClient_DeleteRange() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redistimeseries.NewClientFromPool(pool, "ts-client-1")
// Create serie and add datapoint
client.Add("ts", 1, 5)
client.Add("ts", 10, 15.5)
client.Add("ts", 20, 25)
// Query the serie
datapoints, _ := client.RangeWithOptions("ts", redistimeseries.TimeRangeMinimum, redistimeseries.TimeRangeMaximum, redistimeseries.DefaultRangeOptions)
fmt.Println("Before deleting datapoints: ", datapoints)
// Delete datapoints from timestamp 1 until 10 ( inclusive )
totalDeletedSamples, _ := client.DeleteRange("ts", 1, 10)
fmt.Printf("Deleted %d datapoints\n", totalDeletedSamples)
// Query the serie after deleting from timestamp 1 until 10 ( inclusive )
datapoints, _ = client.RangeWithOptions("ts", redistimeseries.TimeRangeMinimum, redistimeseries.TimeRangeMaximum, redistimeseries.DefaultRangeOptions)
fmt.Println("After deleting datapoints: ", datapoints)
// Output: Before deleting datapoints: [{1 5} {10 15.5} {20 25}]
// Deleted 2 datapoints
// After deleting datapoints: [{20 25}]
}