aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/trace
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
* ! play: remove diagnostic context dataDiego2015-08-161-4/+0
|
* Merge branch 'samplers' of https://github.com/Elyrixia/Kamon into ↵Ivan Topolnjak2015-07-214-21/+39
|\ | | | | | | pr/elyrixia-samplers-206
| * + core: add a clock-sampler, fix ordered-sampler, add unit tests for samplersTristan Sallé2015-07-154-21/+39
| |
* | + Ensure that the TraceLocalStorage can be used from Java and close #196Diego2015-07-181-12/+17
|/
* + core: kamon.trace.token-generator confJoão Ferreira2015-06-263-11/+21
|
* ! core: avoid to evaluate code twice in TraceContext.withNewAsyncSegment and ↵Diego2015-05-211-1/+1
| | | | close #204
* = core,playground: automatic code formatting.Ivan Topolnjak2015-05-041-1/+1
|
* + core: java variant of withMdcDiego2015-05-011-0/+6
|
* = core: revert 14fbca502599ece15d46b726ba066d3f4332f650.Ivan Topolnjak2015-04-181-1/+1
|
* + core: add a couple helper methods for creating segments, related to #126.Ivan Topolnjak2015-04-171-1/+20
|
* = core: make the trace local storage variable fully private.Ivan Topolnjak2015-04-171-1/+1
|
* = core: add commodity trace context manipulation methods to the Tracer.Ivan Topolnjak2015-04-173-18/+58
|
* = core: use kamon.util.Function instead of the java 8 equivalent.Ivan Topolnjak2015-04-171-2/+1
|
* ! all: introduced support for metric tags.Ivan Topolnjak2015-03-093-17/+18
|
* ! core: move the TraceContext manipulation API to the Tracer companion object.Ivan Topolnjak2015-02-155-40/+39
|
* ! core: drop the Extension postfix on all core components.Ivan Topolnjak2015-02-153-11/+11
|
* = all: stop using config.getDuration in favor of config.getFiniteDuration.Ivan Topolnjak2015-02-152-9/+7
|
* ! all: Kamon now works as a single instance in a companion object.Ivan Topolnjak2015-02-135-44/+46
|
* ! all: include license headersDiego2015-01-291-0/+16
|
* ! all: improve the metric recorders infrastructureIvan Topolnjak2015-01-2412-219/+208
|
* = core: avoid unnecesary allocation when askPatternTimeoutWarning is offDiego2014-12-171-2/+1
|
* + core: A more lightweight way for tracing the Akka.ask timeouts and closes #113Diego2014-12-171-1/+1
|
* + core: introduce an alternative way for tracing the Akka.ask timeoutsDiego2014-12-131-0/+2
|
* = core: Fix ThresholdSampler to use minimum-elapsed-time settingMartin Grotzke2014-12-081-1/+3
| | | | | Also fixes usage of ThresholdSampler if "threshold" is configured as sampling strategy.
* = core: fix Sampler isPowerOfTwoDiego2014-12-051-1/+1
|
* = core: introduce fastMod operation in SamplerDiego2014-12-051-1/+14
|
* + kamon-jdbc: introduce Jdbc segmentsDiego2014-12-041-0/+1
|
* = core: include license headersDiego2014-12-045-2/+80
|
* = core: use Sequencer instead of AtomicLongDiego2014-12-031-3/+4
|
* + core: cleanup the simple trace implementationIvan Topolnjak2014-12-047-134/+179
|
* = core: use MetricsOnly contexts for remote contextsIvan Topolnjak2014-12-032-11/+3
|
* = core: first simple approach to providing traces and a subscription mechanism.Ivan Topolnjak2014-12-0310-92/+373
|
* + play, spray, newrelic: store in TraceLocal useful data to diagnose errors ↵Diego2014-11-301-0/+4
| | | | and closes #6
* + core: refactor MDC facilities and closes #100Diego2014-11-192-1/+56
|
* + 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-262-14/+27
|
* ! core: replace Option[TraceContext] by empty object pattern and implement ↵Ivan Topolnjak2014-10-254-124/+143
| | | | basic segments with renaming.
* + akka-remote: create a new kamon-akka-remote module, closes #99Ivan Topolnjak2014-10-241-16/+5
|
* = 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-312-10/+68
|
* Merge branch 'wip/metrics-collection-refactor'Ivan Topolnjak2014-07-032-6/+6
|\ | | | | | | | | Conflicts: kamon-datadog/src/test/scala/kamon/datadog/DatadogMetricSenderSpec.scala
| * ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-032-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-031-0/+5
|/
* = core: added license in TraceLocal and TraceLocalSpecDiego2014-05-201-0/+16
|
* + core: initial support for TraceLocal storageIvan Topolnak2014-05-202-0/+27
|
* ensure that kamon.trace.ask-pattern-tracing setting is honored, closes #4Ivan Topolnjak2014-03-241-0/+36
|