yawnt / trafalgar

Nelson's rules for process control

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Nelson's rules for process control

License:Apache License 2.0


Languages

Language:Scala 100.0%