summaryrefslogtreecommitdiff
path: root/integrationtests/dserver.cfg
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-10-29 12:13:55 +0300
committerPaul Buetow <paul@buetow.org>2021-10-29 12:13:55 +0300
commita5f0c021f2caecf9adfec65583c915b6c04c27a9 (patch)
treea67df41ebe39f360dd4005a715076aa328f21c9c /integrationtests/dserver.cfg
parentffa39a17f48ee9847cc85819d8134b5eb9482b77 (diff)
add dserver integration test for scheduled query
Diffstat (limited to 'integrationtests/dserver.cfg')
-rw-r--r--integrationtests/dserver.cfg20
1 files changed, 20 insertions, 0 deletions
diff --git a/integrationtests/dserver.cfg b/integrationtests/dserver.cfg
new file mode 100644
index 0000000..2092b96
--- /dev/null
+++ b/integrationtests/dserver.cfg
@@ -0,0 +1,20 @@
+{
+ "Server": {
+ "Schedule": [
+ {
+ "Name": "dserver_schedule_test",
+ "Enable": true,
+ "AllowFrom": [
+ "localhost"
+ ],
+ "TimeRange": [
+ 0,
+ 24
+ ],
+ "Files": "./mapr_testdata.log",
+ "Query": "from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname",
+ "Outfile": "./dserver.csv"
+ }
+ ]
+ }
+}