Skip to content

Instantly share code, notes, and snippets.

@MichaelDrogalis
Created June 29, 2017 19:22
Show Gist options
  • Save MichaelDrogalis/b4618cb6aca56042aae90465f09e69f6 to your computer and use it in GitHub Desktop.
Save MichaelDrogalis/b4618cb6aca56042aae90465f09e69f6 to your computer and use it in GitHub Desktop.
(def service
(-> (new-service)
(input-topic "events")
(string-starts-with? [:context :url] "https://pyroclast.io")
(f/= :event :page-view)
(parse-datetime :timestamp "YYY-MM-dd'T'HH:mm:ss.SSSZ")
(aggregate-together
[{:name "hourly-page-views"
:aggregate (a/count (fixed-windows-of 1 :hour :timestamp))}]
:user-id)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment