Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 544 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 544 Bytes

trafalgar

Nelson rules are heuristics used to determine out-of-control processes. This is an implementation of the 8 rules which exposes an akka-stream interface.

Usage

object Main extends App {
  implicit val system = ActorSystem("example")
  implicit val mat = ActorMaterializer()

  Source(1 to 100)
    .map(_.toDouble)
    .via(Trafalgar.flow)
    .runWith(Sink.foreach(println))
}

You should see Throwables being printed to stdout.

License

APACHE-2