Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save confluentgist/d4a64155ae1af7e43257c23f0d3354fc to your computer and use it in GitHub Desktop.
Save confluentgist/d4a64155ae1af7e43257c23f0d3354fc to your computer and use it in GitHub Desktop.
Use Case: Alerting
events
.groupByKey()
.windowedBy(TimeWindows.of(Duration.ofMinutes(2)))
.count(Materialized.as("count-metric"))
.filter( _ < 4 )
.toStream()
.foreach( /* Send that email! */)
// graph servlet queries "count-metric"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment