influx_query 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e0e77afb06d66c56c7850f031855028e2d04c02a2f6f0e00e4a81bbd2d27ddc
|
4
|
+
data.tar.gz: 2879db4671aa1ea3106aa8b5fa2b68bfa41f4c62a27e565e7b408d37d2d05f6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cd6325150d90cd4f09a3d8ca02ab25a1989c2e6efcaac74a44b2a4bbbaa21841a14c818528a8ec5e1748a5a34e3c24f0ebfcf145141fbe972f14adafed92415
|
7
|
+
data.tar.gz: e4d02e832475992a23694cd571e45ee55bfc981222ff123cd39635be236cb6b0353a66d14a6f7213ca5d79d6055d04cb06ee671af9c3a7240a235cf879437d9b
|
data/README.md
CHANGED
@@ -67,7 +67,7 @@ are controlled by the chaining dsl.
|
|
67
67
|
- `params`: the values which will be interpolated into the final query.
|
68
68
|
- `select_columns`: an array of strings.
|
69
69
|
Defaults to `["*"]` and will stay that way unless manually altered.
|
70
|
-
- `source`: string, the measurement to fetch data from, e.g. "things"
|
70
|
+
- `source`: string, the measurement to fetch data from, e.g. "things"
|
71
71
|
|
72
72
|
In between `#initialize` and `#resolve`, other methods can be called:
|
73
73
|
|
@@ -83,7 +83,7 @@ Args:
|
|
83
83
|
```
|
84
84
|
query
|
85
85
|
.filter!(:start, "time", "<", "now() - 30d")
|
86
|
-
.filter!(:
|
86
|
+
.filter!(:end, "time", ">", "now() - 15d")
|
87
87
|
```
|
88
88
|
|
89
89
|
This previous example has its functionality served by a helper method
|
data/lib/version.rb
CHANGED