aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala
Commit message (Collapse)AuthorAgeFilesLines
* + core,play,spray: allow segments to identify the library they belong to.Ivan Topolnjak2014-11-091-11/+13
|
* = core,spray,newrelic: minor formatting changes.Ivan Topolnjak2014-11-092-6/+6
|
* = core,play: workaround the non thread safe calls to TrieMap.getOrElseUpdateIvan Topolnjak2014-11-095-14/+29
|
* + spray: external naming for traces and segments, related to #65Ivan Topolnjak2014-10-312-8/+16
|
* = all: upgrade to be compatible with the latest code in coreIvan Topolnjak2014-10-263-15/+27
|
* ! core: replace Option[TraceContext] by empty object pattern and implement ↵Ivan Topolnjak2014-10-255-125/+144
| | | | basic segments with renaming.
* + akka-remote: create a new kamon-akka-remote module, closes #99Ivan Topolnjak2014-10-242-107/+5
|
* = core: minor cleanup of the remoting instrumentationIvan Topolnjak2014-10-231-7/+7
|
* = core,system.metrics: fixed serialization errors when using ↵Boris Giftge2014-10-236-60/+85
| | | | akka.actor.serialize-messages = on
* = core: exclude CallerThreadDispatcher from instrumentation, change ↵Diego2014-10-211-1/+1
| | | | Dispatcher to MessageDispatcher in DispatcherInstrumentation and fixes #95
* ! kamon-core: Remove KamonWeaverMessageHandler to avoid dependencies issues ↵Diego2014-10-201-61/+0
| | | | and closes #97
* + core: provide sum and percentile functions in Histogram.Snapshot, closes #85Ivan Topolnjak2014-10-201-0/+20
|
* ! kamon-newrelic: * Avoid reporting data to Newrelic if no metrics have been ↵Diego2014-10-181-12/+13
| | | | | | collected * Implement error handling with NewRelic Agent * Minor refactor * close issue #7 and issue #17
* = core: remove a println left from testingIvan Topolnjak2014-10-141-2/+1
|
* = core: fix NPE when finishing segments, fixes #88Ivan Topolnjak2014-10-121-4/+8
|
* = play:Diego2014-09-092-20/+13
| | | | | | | | * 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
* + core: initial support for akka remoting/cluster, related to #61Ivan Topolnjak2014-08-313-10/+159
|
* = core: fix errors in last commitDiego2014-08-292-153/+1
|
* + core: provide metrics for routersDiego2014-08-293-7/+283
| | | | | | | * processing-time * errors * time-in-mailbox closes #62
* + core: add support for trace context propagation on Scalaz futuresMichael Donaghy2014-08-211-0/+47
|
* = core: ensure that MinMaxCounters never record values bellow zero, fixes #71Ivan Topolnjak2014-08-131-7/+10
|
* + system-metrics: minor load banner refactorDiego2014-08-091-5/+2
|
* + core: inline jsr166 to remove dependencyDiego2014-08-092-2/+2
|
* ! core: use the inline variant of TraceRecorder.withTraceContext via macrosDiego2014-08-063-4/+4
|
* + play-example: included UserMetrics, LogReporter and SystemMetrics extensionsDiego2014-08-051-4/+1
|
* = core: remove the user- prefix on all user metricsIvan Topolnjak2014-08-041-26/+11
|
* = core: allow subscribing to user metrics and give decent namesIvan Topolnjak2014-08-042-100/+140
|
* = core: cleanup actor metrics recorder after the actor is stopped, closes #69Ivan Topolnjak2014-08-022-3/+1
|
* = core: subscription protocol specification, closes #51Ivan Topolnjak2014-07-282-30/+73
|
* = newrelic: upgrade to the latest metrics scheme, closes #54Ivan Topolnjak2014-07-272-2/+13
|
* = kamon-system-metrics: introduce actor system collectorDiego2014-07-231-1/+5
|
* + core,spray: create and implement http server metrics for spray, related to #56Ivan Topolnjak2014-07-232-1/+93
|
* ! kamon-system-metrics: introducing System and JVM metrics moduleDiego2014-07-211-2/+6
|
* = build: avoid unnecessary compile dependency on kamon-testkit from kamon-sprayIvan Topolnjak2014-07-092-2/+2
|
* + core: log a configurable error message when the application was started ↵Ivan Topolnjak2014-07-092-1/+45
| | | | with the AspectJ Weaver, closes #48
* + core: create the new KamonStandalone helper, closes #47Ivan Topolnjak2014-07-082-2/+76
|
* + core: introduce the new ↵Ivan Topolnjak2014-07-044-12/+13
| | | | kamon.metrics.default-collection-context-buffer-size setting
* Merge branch 'wip/metrics-collection-refactor'Ivan Topolnjak2014-07-0331-717/+1127
|\ | | | | | | | | Conflicts: kamon-datadog/src/test/scala/kamon/datadog/DatadogMetricSenderSpec.scala
| * ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-0331-717/+1127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | = core: Inline variant of withTraceContext using macros.Carlos Ferreyra2014-07-032-2/+7
|/
* = core: minor refactor in MinMaxCounterDiego2014-06-081-1/+4
|
* + core: upgraded HDRHistogram to 1.2.1Diego2014-06-071-1/+0
|
* = core: remove ContinuousHdrRecorder from ActorMetricsDiego2014-06-072-3/+3
| | | | * in the case that we get a negative number, change the number to positive in MinMaxCounter in order to avoid IndexOutOfBoundsException.
* = core : fixes #38Diego2014-06-071-18/+35
| | | | * I've changed the way to get the Actorsystem inside of DispatcerTracing, passing the actorSystem across the Dispatchers and then to each Dispatcher in the same ActorSystem.
* = core: fixes #37Diego2014-06-051-8/+14
|
* = core: fixes typo in DispatcherMetricsDiego2014-05-281-2/+2
|
* = core: avoid using tuples in favor of case classesIvan Topolnak2014-05-215-70/+58
|
* = core: added license in TraceLocal and TraceLocalSpecDiego2014-05-201-0/+16
|
* + core: added tests to dispatcher metricsDiego2014-05-201-7/+7
|
* + core: added dispatchers metrics instrumentationDiego2014-05-203-0/+227
|