aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/trace/TraceContext.scala
Commit message (Collapse)AuthorAgeFilesLines
* = akka-remote: add @transient to kamon.trace.SegmentAware::segment to avoid ↵Diego2015-08-271-1/+1
| | | | error in chill/kryo serialization and closes #160
* ! core: avoid to evaluate code twice in TraceContext.withNewAsyncSegment and ↵Diego2015-05-211-1/+1
| | | | close #204
* + core: add a couple helper methods for creating segments, related to #126.Ivan Topolnjak2015-04-171-1/+20
|
* = core: use kamon.util.Function instead of the java 8 equivalent.Ivan Topolnjak2015-04-171-2/+1
|
* ! core: move the TraceContext manipulation API to the Tracer companion object.Ivan Topolnjak2015-02-151-28/+9
|
* ! all: Kamon now works as a single instance in a companion object.Ivan Topolnjak2015-02-131-10/+1
|
* ! all: improve the metric recorders infrastructureIvan Topolnjak2015-01-241-17/+49
|
* + kamon-jdbc: introduce Jdbc segmentsDiego2014-12-041-0/+1
|
* + core: cleanup the simple trace implementationIvan Topolnjak2014-12-041-26/+22
|
* = core: first simple approach to providing traces and a subscription mechanism.Ivan Topolnjak2014-12-031-70/+17
|
* + core,play,spray: allow segments to identify the library they belong to.Ivan Topolnjak2014-11-091-11/+13
|
* = core,play: workaround the non thread safe calls to TrieMap.getOrElseUpdateIvan Topolnjak2014-11-091-1/+2
|
* + spray: external naming for traces and segments, related to #65Ivan Topolnjak2014-10-311-4/+12
|
* = all: upgrade to be compatible with the latest code in coreIvan Topolnjak2014-10-261-3/+10
|
* ! core: replace Option[TraceContext] by empty object pattern and implement ↵Ivan Topolnjak2014-10-251-90/+102
| | | | basic segments with renaming.
* = 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
|
* + core: initial support for akka remoting/cluster, related to #61Ivan Topolnjak2014-08-311-9/+45
|
* ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-031-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | 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: initial support for TraceLocal storageIvan Topolnak2014-05-201-0/+2
|
* multiple fixes to the custom metrics collection facilitiesIvan Topolnak2014-03-111-8/+8
|
* support for custom metricsIvan Topolnak2014-03-061-2/+3
|
* create the notion of a metric group category for easier filtering when ↵Ivan Topolnak2014-02-041-2/+2
| | | | subscribing
* remake of trace context and allow different tracing levelsIvan Topolnjak2014-01-311-22/+115
|
* wipIvan Topolnak2014-01-301-16/+1
|
* rename UOW to TraceToken and generate it by default when a Trace startsIvan Topolnjak2014-01-271-1/+1
|
* integrate trace and metrics into the base projectIvan Topolnak2014-01-131-0/+51