aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon
Commit message (Collapse)AuthorAgeFilesLines
...
* = 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-632/+1468
|\ | | | | | | | | Conflicts: kamon-datadog/src/test/scala/kamon/datadog/DatadogMetricSenderSpec.scala
| * ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-0331-632/+1468
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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: 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 typo in DispatcherMetricsDiego2014-05-281-2/+2
|
* = core: avoid using tuples in favor of case classesIvan Topolnak2014-05-213-64/+9
|
* = 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-202-0/+130
|
* + core: initial support for TraceLocal storageIvan Topolnak2014-05-202-0/+27
|
* + core: allow dispatcher configuration to core componentsIvan Topolnjak2014-05-182-27/+1
|
* = core: move the scheduling of gauge recordings to MetricsExtension and load ↵Ivan Topolnjak2014-05-183-6/+23
| | | | interval for recordings from config
* ! datadog: first functional implementation of DatadogMetricsSenderDiego2014-05-141-1/+1
|
* ! core: added java.logging.Logger instead of slf4j in ↵Diego2014-05-121-3/+3
| | | | KamonWeaverMessageHandler and fixes #32
* + play: removed default dispatchers to kamon default dispatcher and refactor ↵Diego2014-05-091-1/+2
| | | | test in WSInstrumentationSpec
* = core: code formatDiego2014-05-091-2/+2
|
* + core: added MinMaxCounterSpec and new test in ActorMetricsSpecDiego2014-05-092-1/+25
|
* = core: fixed ActorMetricsSpecDiego2014-05-071-8/+2
|
* + core: MinMaxCounter for actor mailbox sizeDiego2014-05-072-0/+81
|
* = statsd: minor changeDiego2014-05-021-1/+1
|