diff options
| author | Paul Buetow <pbuetow@mimecast.com> | 2020-02-27 16:28:10 +0000 |
|---|---|---|
| committer | Paul Buetow <pbuetow@mimecast.com> | 2020-02-27 16:28:10 +0000 |
| commit | 40728693d9cfbd99458f12d5183119ec699b8907 (patch) | |
| tree | f2903f90f0db132b38d9c36639e908eae9e87541 /internal/config | |
| parent | b4176ce3443567b16fef9f91c5a42a63d8d5e026 (diff) | |
can run scheduled queries across a storage volume
Diffstat (limited to 'internal/config')
| -rw-r--r-- | internal/config/server.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/config/server.go b/internal/config/server.go index aa1a02e..09eb2c4 100644 --- a/internal/config/server.go +++ b/internal/config/server.go @@ -20,9 +20,10 @@ type Scheduled struct { Files string Query string Outfile string - Discovery string `json:",omitempty"` - Servers string + Discovery string `json:",omitempty"` + Servers []string `json:",omitempty"` TimeRange [2]int + AllowFrom []string `json:",omitempty"` } // ServerConfig represents the server configuration. |
