Forked from vvcephei/suppression-blog-figure-2.java
Last active
March 19, 2019 03:49
-
-
Save confluentgist/d4a64155ae1af7e43257c23f0d3354fc to your computer and use it in GitHub Desktop.
Use Case: Alerting
This file contains hidden or 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
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