We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da1c5be commit e86d0b2Copy full SHA for e86d0b2
README.md
@@ -92,4 +92,18 @@ Sample SPL Search for BoxPlot:
92
93

94
95
+Sample SPL Search for Multiple-Axes:
96
+```sh
97
+| makeresults count=60
98
+| streamstats count
99
+| eval _time=_time-(count*3600)
100
+| eval line1=(random() %50) + 1
101
+| eval line2=(random() %50) + 1
102
+| eval sign=if((random() %2)==0,"-","+")
103
+| eval scatter=(((random() %20)/100)*line1)
104
+| eval scatter=sign.scatter
105
+| fields - sign,count
106
+| table _time, scatter, line1, line2
107
+```
108
109
+
0 commit comments