aboutsummaryrefslogtreecommitdiff
path: root/kamon-play/src/main/scala/kamon/play/instrumentation
Commit message (Collapse)AuthorAgeFilesLines
* + core,play,spray: allow segments to identify the library they belong to.Ivan Topolnjak2014-11-091-2/+2
|
* = core,play: workaround the non thread safe calls to TrieMap.getOrElseUpdateIvan Topolnjak2014-11-091-2/+2
|
* + play: external naming for traces and segments, related to #65Ivan Topolnjak2014-10-312-3/+5
|
* = all: upgrade to be compatible with the latest code in coreIvan Topolnjak2014-10-263-40/+33
|
* = play: fixes #84Diego2014-09-153-22/+19
|
* + play: * use the url template from the routes file as default trace ↵Diego2014-09-141-13/+43
| | | | | | name(basic implementation), and closes #82 * minor refactor in RequestInstrumentation
* = play: * fix testsDiego2014-09-091-16/+13
| | | | * use kamon default dispatcher
* = play:Diego2014-09-092-32/+37
| | | | | | | | * remove from publishErrorMessage method * refactor onError method in RequestInstrumentation * refactor WSInstrumentation in order to propagate the TraceContext when a WS call is executed outside an Action * improve tests * closes #33
* = play: minor refactor in RequestInstrumentationDiego2014-08-051-16/+9
|
* + play: record http server metrics, closes #56Ivan Topolnjak2014-07-271-2/+11
|
* + play: introducing LoggerLikeInstrumentation in order to copy the ↵Diego2014-07-062-12/+81
| | | | properties of TraceLocalStorage to MDC
* ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-031-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | 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-53/+38
| | | | TraceContext through the filters and all actions in the incoming request
* + core: allow dispatcher configuration to core componentsIvan Topolnjak2014-05-181-1/+0
|
* + play: removed default dispatchers to kamon default dispatcher and refactor ↵Diego2014-05-092-4/+5
| | | | test in WSInstrumentationSpec
* + play: fix WSIntrumentationDiego2014-04-231-1/+1
|
* + all: fix compilation issuesDiego2014-04-231-3/+3
|
* WSInstrumentation refactorDiego2014-03-122-50/+23
|
* fix Mixing in play instrumentationDiego2014-03-101-1/+1
|
* some cleanupDiego2014-03-091-9/+6
|
* Play Integration with: X-Trace-Token, WebExternal Time and Error publishing ↵Diego2014-03-092-3/+35
| | | | in Akka EventStream
* WIP:Play integration WebExternalDiego2014-03-082-1/+71
|
* WIP:play support simple refactorDiego2014-02-281-27/+23
|
* WIP: added tests to play requests instrumentationDiego2014-02-281-0/+91