aboutsummaryrefslogtreecommitdiff
path: root/kamon-core
Commit message (Collapse)AuthorAgeFilesLines
...
* + play, spray, newrelic: store in TraceLocal useful data to diagnose errors ↵Diego2014-11-301-0/+4
| | | | and closes #6
* ! core: update HdrHistogram to 2.0.3Diego2014-11-192-2/+2
|
* + core: refactor MDC facilities and closes #100Diego2014-11-195-8/+118
|
* = core: kamon akka instrumentation name spaceAndrei Pozolotin2014-11-127-17/+17
| | | | suppress javac warnings move javac settings
* + core,play,spray: allow segments to identify the library they belong to.Ivan Topolnjak2014-11-093-17/+19
|
* = core: ensure that ActorMetricsSpec uses the correct configuration.Ivan Topolnjak2014-11-091-3/+8
|
* = 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-259-151/+170
| | | | basic segments with renaming.
* + akka-remote: create a new kamon-akka-remote module, closes #99Ivan Topolnjak2014-10-245-3125/+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-212-1/+3
| | | | Dispatcher to MessageDispatcher in DispatcherInstrumentation and fixes #95
* ! kamon-core: Remove KamonWeaverMessageHandler to avoid dependencies issues ↵Diego2014-10-203-76/+1
| | | | and closes #97
* + core: provide sum and percentile functions in Histogram.Snapshot, closes #85Ivan Topolnjak2014-10-202-1/+26
|
* = core: use explicitly thrown exceptions for failure tests.Ivan Topolnjak2014-10-194-4/+4
|
* ! 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-093-22/+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-318-10/+3343
|
* = core: fix errors in last commitDiego2014-08-292-153/+1
|
* + core: provide metrics for routersDiego2014-08-295-7/+457
| | | | | | | * processing-time * errors * time-in-mailbox closes #62
* + core: add support for trace context propagation on Scalaz futuresMichael Donaghy2014-08-213-0/+112
|
* = core: ensure that MinMaxCounters never record values bellow zero, fixes #71Ivan Topolnjak2014-08-133-13/+50
|
* + system-metrics: minor load banner refactorDiego2014-08-092-5/+10
|
* + core: inline jsr166 to remove dependencyDiego2014-08-095-2/+746
|
* ! 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-043-198/+245
|
* = core: minor fix in actor metrics specIvan Topolnjak2014-08-041-4/+4
|
* = core: cleanup actor metrics recorder after the actor is stopped, closes #69Ivan Topolnjak2014-08-023-4/+16
|
* = core: subscription protocol specification, closes #51Ivan Topolnjak2014-07-284-31/+207
|
* = 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-094-1/+54
| | | | with the AspectJ Weaver, closes #48
* + core: create the new KamonStandalone helper, closes #47Ivan Topolnjak2014-07-083-2/+99
|
* = core: ensure that no automatic metric flushes occur during certain testsIvan Topolnjak2014-07-045-0/+9
|
* + core: introduce the new ↵Ivan Topolnjak2014-07-049-20/+37
| | | | kamon.metrics.default-collection-context-buffer-size setting
* Merge branch 'wip/metrics-collection-refactor'Ivan Topolnjak2014-07-0353-1240/+2295
|\ | | | | | | | | Conflicts: kamon-datadog/src/test/scala/kamon/datadog/DatadogMetricSenderSpec.scala
| * ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-0353-1240/+2295
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
|