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/9d70c170403ff77674b55775265cd083 to your computer and use it in GitHub Desktop.
Save confluentgist/9d70c170403ff77674b55775265cd083 to your computer and use it in GitHub Desktop.
Metrics App with Alerts
events
.groupByKey()
.windowedBy(
TimeWindows.of(Duration.ofMinutes(2).withGrace(Duration.ofMinutes(2))
)
.count(Materialized.as("count-metric"))
.suppress(Suppressed.untilWindowClose(BufferConfig.unbounded()))
.filter( _ < 4 )
.toStream()
.foreach( /* Send that email! */)
// graph servelet queries "count-metric"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment