aboutsummaryrefslogtreecommitdiff
path: root/kamon-statsd/src/main/scala/kamon/statsd/StatsDMetricsSender.scala
Commit message (Collapse)AuthorAgeFilesLines
* ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-031-17/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* = statsd: force the decimal format to use dot (.) as decimal point separatorIvan Topolnjak2014-06-091-3/+7
|
* + statsd: added kamon counter instrumentDiego2014-05-021-1/+1
|
* = statsd: improve metrics sender performanceIvan Topolnjak2014-04-281-24/+26
| | | | | | By building the metrics data in a simple StringBuilder instead of a ByteStringBuilder the processing time for the metrics sender was reduced by ~60% in a test application, from ~2.8ms to ~1.2ms.
* ! statsd: the max-packet-size setting is now expressed in bytes rather than ↵Ivan Topolnak2014-04-251-6/+5
| | | | a plain Int, fixes #27
* + statsd: report trace metrics to StatsDIvan Topolnak2014-04-091-5/+3
|
* = statsd: avoid using scientific notation when rendering sampling ratesIvan Topolnak2014-04-081-1/+4
|
* = statsd: correctly send multiple packets for a single metricIvan Topolnjak2014-04-081-22/+31
|
* ! statsd: take advantange of the multi-measurement formatIvan Topolnjak2014-04-071-16/+66
|
* + site: added changelog and license viewsDiego2014-04-031-2/+2
|
* = statsd: honor the max-packet-size setting and include newline char on ↵Ivan Topolnjak2014-04-031-11/+9
| | | | multi-metric packets
* + statsd: first working implementation with processing-time and ↵Ivan Topolnak2014-04-031-0/+65
time-in-mailbox metrics for actors