Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

document start/end constraints in grav.y spec #1306

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions search/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,9 @@ All input before the first module in a query represents the query constraints. U
| Constraint | Description | Example |
|------------|-------------|---------|
| tag | The tag(s) to extract. Supports comma separated lists and wildcards. Defaults to "tag=default" if omitted. | tag=dns,zeek* |
| start | Provide the query starting timeframe in the query. Supports both concrete timestamps and offsets. If "end" is omitted when "start" is used, "end" will be set to the current time. | start="2006-01-02T15:04:05Z", start=-1h |
| end | Provide the query ending timeframe in the query. Supports both concrete timestamps and offsets. If "start" is omitted when "end" is used, "start" will be set to the current time. | end="2006-01-02T15:04:05Z", end=-1h |

ashnwade marked this conversation as resolved.
Show resolved Hide resolved

### Modules

Expand Down
Loading