-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue with incorrect counts when using where clauses on a aggregation function in vector runtime. If a value fails the where clause make the value as null so it is skipped by the aggregation function. Closes #5468
- Loading branch information
Showing
3 changed files
with
38 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
zed: | | ||
summarize | ||
num_requests := count() | ||
where log_time >= 2012-10-01T00:00:00Z | ||
by client_ip | ||
| sort client_ip | ||
vector: true | ||
|
||
input: | | ||
{log_time:2012-01-01T00:00:44Z,client_ip:249.92.17.134} | ||
{log_time:2012-10-01T00:24:30Z,client_ip:249.92.17.134} | ||
{log_time:2012-05-12T10:23:22Z,client_ip:251.58.48.137} | ||
output: | | ||
{client_ip:249.92.17.134,num_requests:1(uint64)} | ||
{client_ip:251.58.48.137,num_requests:0(uint64)} |