Skip to content

yawnt/trafalgar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages