scala-academy / performance-analysis   0.0.1

GitHub

This is a project to be used in the "Scala and akka in practise" course

Scala versions: 2.11

Performance analysis

Gitter chat: https://gitter.im/scala-academy/performance-analysis Join the chat at https://gitter.im/scala-academy/performance-analysis

Waffle issue board: https://waffle.io/scala-academy/performance-analysis Stories in Ready

Build status: Build Status

Codacy grade and coverage: Codacy Badge Codacy Badge

This is a project used in the "Scala and akka in practise" course. Goal: learn programing with Scala and Akka in a real-world scenario.

What do you call a Java repository? A garbage collection

Run Gatling Simulations

To run all gatling tests

sbt gatling:test

To run single test

sbt gatling:testOnly <pacakge.simulation.class>

Actor Design

![Alt text](http://g.gravizo.com/g? digraph G { node [shape=box]; Administrator [shape=oval]; LogReceiver [shape=oval]; aize ="4,4"; AdministratorActor; LogParserActor; LogReceiverActor; AlertRuleActor; AlertActionActor; ; Administrator -> AdministratorActor [label="RegisterMetric\nGetRegisteredComponents\nRegisterComponent\nRegisterAlertingRule\nGetDetails"]; ; AdministratorActor -> Administrator [label="MetricCreated\nRegisteredComponents\nLogParserCreated\nLogParserExisted\nDetails\nLogParserNotFound\nMetricNotFound\nAlertingRuleCreated"]; ; AdministratorActor -> LogParserActor [label="RequestDetails\nRegisterMetric\nRegisterAlertingRule"]; LogParserActor -> AdministratorActor [label="Details\nMetricRegistered\nMetricNotFound\nAlertingRuleCreated"]; LogParserActor -> AlertRuleActor [label="CheckRuleBreak"]; AlertRuleActor -> AlertActionActor [label="Action"]; ; LogReceiver -> LogReceiverActor [label="SubmitLog"]; LogReceiverActor -> LogReceiver [label="LogSubmitted"]; } )