Skip to content

Commit

Permalink
project _time in query 24
Browse files Browse the repository at this point in the history
  • Loading branch information
tsenart committed Feb 21, 2024
1 parent b147fc2 commit 1840f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion axiom/queries.apl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
['clickbench-hits'] | where URL contains_cs "google" and SearchPhrase != "" | summarize c = count(), MinURL = min(URL) by SearchPhrase | order by c desc | take 10
['clickbench-hits'] | extend userID = toint(UserID) | where Title contains_cs "Google" and URL !contains_cs ".google." and SearchPhrase != "" | summarize c = count(), MinURL = min(URL), MinTitle = min(Title), CountDistinctUserID = dcount(userID) by SearchPhrase | order by c desc | take 10
['clickbench-hits'] | where URL contains_cs "google" | order by _time asc | take 10
['clickbench-hits'] | project SearchPhrase | where SearchPhrase != "" | order by _time asc | take 10
['clickbench-hits'] | project SearchPhrase, _time | where SearchPhrase != "" | order by _time asc | take 10
['clickbench-hits'] | project SearchPhrase | where SearchPhrase != "" | order by SearchPhrase asc | take 10
['clickbench-hits'] | project SearchPhrase, _time | where SearchPhrase != "" | order by _time asc, SearchPhrase asc | take 10
['clickbench-hits'] | where URL != "" | summarize c = count(), l = avg(strlen(URL)) by CounterID | where c > 100000 | order by l desc | take 25
Expand Down

0 comments on commit 1840f96

Please sign in to comment.