aboutsummaryrefslogtreecommitdiff
path: root/kamon-play/src/test
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into release-0.2Ivan Topolnjak2014-07-293-71/+271
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: kamon-core/src/main/scala/kamon/metrics/Subscriptions.scala kamon-core/src/test/scala/kamon/instrumentation/akka/ActorCellInstrumentationSpec.scala kamon-datadog/src/main/scala/kamon/datadog/Datadog.scala kamon-play/src/main/scala/kamon/play/instrumentation/WSInstrumentation.scala kamon-play/src/test/scala/kamon/play/RequestInstrumentationSpec.scala kamon-play/src/test/scala/kamon/play/WSInstrumentationSpec.scala kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala kamon-statsd/src/main/scala/kamon/statsd/StatsD.scala project/Projects.scala version.sbt
| * + play: record http server metrics, closes #56Ivan Topolnjak2014-07-271-1/+25
| |
| * = play: fixes LoggerLikeInstrumentationSpecDiego2014-07-061-25/+21
| |
| * = play: comment test because not run in travisDiego2014-07-061-2/+3
| |
| * + play: introducing LoggerLikeInstrumentation in order to copy the ↵Diego2014-07-062-11/+135
| | | | | | | | properties of TraceLocalStorage to MDC
| * ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-031-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR is including several changes to the kamon-core, most notably: - Formalize the interface for Histograms, Counters and MinMaxCounters. Making sure that the interfaces are as clean as possible. - Move away from the all Vector[Measurement] based Histogram snapshot to a new approach in which we use a single long to store both the index in the counts array and the frequency on that bucket. The leftmost 2 bytes of each long are used for storing the counts array index and the remaining 6 bytes are used for the actual count, and everything is put into a simple long array. This way only the buckets that actually have values will be included in the snapshot with the smallest possible memory footprint. - Introduce Gauges. - Reorganize the instrumentation for Akka and Scala and rewrite most of the tests of this components to avoid going through the subscription protocol to test. - Introduce trace tests and fixes on various tests. - Necessary changes on new relic, datadog and statsd modules to compile with the new codebase. Pending: - Finish the upgrade of the new relic to the current model. - Introduce proper limit checks for histograms to ensure that we never pass the 2/6 bytes limits. - More testing, more testing, more testing. - Create the KamonStandalone module.
| * + play: refactor in RequestInstrumentation in order to propagate the ↵Diego2014-06-161-10/+44
| | | | | | | | TraceContext through the filters and all actions in the incoming request
| * = core: fix DispatcherMetricsSpecDiego2014-05-201-0/+1
| |
| * + play: removed default dispatchers to kamon default dispatcher and refactor ↵Diego2014-05-091-5/+47
| | | | | | | | test in WSInstrumentationSpec
| * + play: new rename trace testDiego2014-05-091-0/+2
| |
| * = play: change code formatDiego2014-05-092-10/+10
| |
| * + play: upgrade version to 2.3.RC1 and change Specs2 for ScalaTestsDiego2014-05-092-56/+32
| |
| * ! core: first implementetion of kamon counter intrument and actor errors metricsDiego2014-05-011-1/+1
| |
* | Merge branch 'master' into release-0.2Ivan Topolnak2014-04-241-15/+1
|\|
| * + play: fix WSIntrumentationDiego2014-04-231-2/+2
| |
| * = play: ensure each test case receives its own FakeApplicationIvan Topolnak2014-04-231-1/+1
| |
| * + all: fix compilation issuesDiego2014-04-232-14/+1
|/
* implementation of IMessageHandler interface in order to control Aspectj ↵Diego2014-03-152-6/+16
| | | | weaving messages through kamon
* Play Integration with: X-Trace-Token, WebExternal Time and Error publishing ↵Diego2014-03-094-17/+50
| | | | in Akka EventStream
* WIP:Play integration WebExternalDiego2014-03-082-1/+65
|
* WIP:Play support and resolve #20Diego2014-03-032-22/+33
|
* WIP:play support simple refactorDiego2014-02-281-1/+1
|
* WIP: added tests to play requests instrumentationDiego2014-02-283-0/+117