aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/metrics
Commit message (Collapse)AuthorAgeFilesLines
* ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-0313-909/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | 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: 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 tests to dispatcher metricsDiego2014-05-201-7/+7
|
* + core: added dispatchers metrics instrumentationDiego2014-05-202-0/+130
|
* + core: allow dispatcher configuration to core componentsIvan Topolnjak2014-05-181-3/+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
|
* + play: removed default dispatchers to kamon default dispatcher and refactor ↵Diego2014-05-091-1/+2
| | | | test in WSInstrumentationSpec
* + core: added MinMaxCounterSpec and new test in ActorMetricsSpecDiego2014-05-091-1/+1
|
* = core: fixed ActorMetricsSpecDiego2014-05-071-8/+2
|
* + core: MinMaxCounter for actor mailbox sizeDiego2014-05-071-0/+57
|
* = 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-011-1/+3
|
* ! core: new counter recorder based on LongAdderDiego2014-04-302-7/+46
|
* + all: fix compilation issuesDiego2014-04-231-1/+1
|
* ! core: change metric identities to lower case, separated with dashesIvan Topolnak2014-04-093-5/+5
|
* ! core: add the notion of instrument types to metric snapshotsIvan Topolnjak2014-04-062-4/+14
|
* multiple fixes to the custom metrics collection facilitiesIvan Topolnak2014-03-119-104/+126
|
* support for custom metricsIvan Topolnak2014-03-064-4/+62
|
* minor cleanup before relasing 0.0.13Ivan Topolnak2014-02-062-13/+11
|
* kamon-newrelic now uses the subscription protocol to report metrics to NewRelicIvan Topolnjak2014-02-051-2/+2
|
* partial rewrite of kamon-newrelicIvan Topolnak2014-02-043-67/+45
|
* metrics buffer for easier periodic reportingIvan Topolnak2014-02-042-0/+90
|
* create the notion of a metric group category for easier filtering when ↵Ivan Topolnak2014-02-045-45/+55
| | | | subscribing
* continuous hdr tracking instrument, special for mailbox size metricsIvan Topolnak2014-02-032-1/+52
|
* add tags to individual metricsIvan Topolnjak2014-02-023-7/+6
|
* remake of trace context and allow different tracing levelsIvan Topolnjak2014-01-311-3/+1
|
* wipIvan Topolnak2014-01-304-11/+76
|
* max, min and merge operations for MetricSnapshotIvan Topolnak2014-01-293-58/+120
|
* store actor metrics in the new metrics extensionIvan Topolnjak2014-01-284-141/+107
|
* first implementation of a universal metrics repository for any kind of ↵Ivan Topolnak2014-01-275-72/+211
| | | | metrics we might be interested in
* rename UOW to TraceToken and generate it by default when a Trace startsIvan Topolnjak2014-01-272-16/+5
|
* hdr histogram extension with concurrent updates and snapshots supportIvan Topolnjak2014-01-241-0/+78
|
* integrate trace and metrics into the base projectIvan Topolnak2014-01-133-0/+210