aboutsummaryrefslogtreecommitdiff
path: root/kamon-core
Commit message (Collapse)AuthorAgeFilesLines
* = 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
|
* = core: remove ContinuousHdrRecorder from ActorMetricsDiego2014-06-073-5/+5
| | | | * 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-216-84/+74
|
* = core: fix DispatcherMetricsSpecDiego2014-05-201-1/+1
|
* = core: fix DispatcherMetricsSpecDiego2014-05-201-1/+1
|
* = core: added license in TraceLocal and TraceLocalSpecDiego2014-05-202-1/+32
|
* + core: added tests to dispatcher metricsDiego2014-05-202-7/+112
|
* removed old MailboxSizeMetricsSpecDiego2014-05-201-31/+0
|
* + core: added dispatchers metrics instrumentationDiego2014-05-205-0/+250
|
* + core: initial support for TraceLocal storageIvan Topolnak2014-05-203-0/+77
|
* + core: allow dispatcher configuration to core componentsIvan Topolnjak2014-05-183-34/+12
|
* = core: move the scheduling of gauge recordings to MetricsExtension and load ↵Ivan Topolnjak2014-05-185-40/+52
| | | | 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-092-4/+3
| | | | test in WSInstrumentationSpec
* = core: code formatDiego2014-05-092-5/+4
|
* + core: added MinMaxCounterSpec and new test in ActorMetricsSpecDiego2014-05-095-15/+148
|
* = core: fixed ActorMetricsSpecDiego2014-05-073-25/+25
|
* + core: MinMaxCounter for actor mailbox sizeDiego2014-05-074-12/+128
|
* = statsd: minor changeDiego2014-05-021-1/+1
|
* + statsd: added kamon counter instrumentDiego2014-05-021-1/+1
|
* ! core: first implementetion of kamon counter intrument and actor errors metricsDiego2014-05-014-8/+47
|
* ! core: new counter recorder based on LongAdderDiego2014-04-303-8/+58
|
* + all: fix compilation issuesDiego2014-04-232-3/+3
|