aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test/scala/kamon/trace
Commit message (Collapse)AuthorAgeFilesLines
* separate the build into core, testkit and core-tests projectsIvan Topolnjak2017-08-156-597/+0
|
* Merge remote-tracking branch ↵Ivan Topolnjak2017-08-157-117/+542
|\ | | | | | | 'ivantopo/wip/moving-ot-support-to-a-separeate-project' into kamon-1.0-develop
| * expose the identity provider through the TracerIvan Topolnjak2017-08-143-7/+6
| |
| * implement Span propagation on top of Kamon.ContextIvan Topolnjak2017-08-144-280/+53
| |
| * try an alternative approach to active span managementIvan Topolnjak2017-07-253-51/+47
| |
| * add basic span reporting testsIvan Topolnjak2017-07-201-5/+143
| |
| * test EmptySpanContext injection on the ExtendedB3 codecIvan Topolnjak2017-07-201-0/+5
| |
| * accept Option[SpanContext] as parent in SpanBuilderIvan Topolnjak2017-07-191-2/+3
| |
| * start writting Span.Real testsIvan Topolnjak2017-07-191-0/+41
| |
| * add tests for active span managementIvan Topolnjak2017-07-191-0/+71
| |
| * tests for Span building and the ExtendedB3 codec, related bugfixesIvan Topolnjak2017-07-192-17/+226
| |
| * provide the proper FQCN for default identity providers and codecsIvan Topolnjak2017-07-181-0/+18
| |
| * add a double length trace identifier implementation of IdentityProviderIvan Topolnjak2017-07-181-0/+86
| |
| * add test case for decoding a invalid identifierIvan Topolnjak2017-07-171-2/+8
| |
| * working on ID generation and SpanContext encoding/decodingIvan Topolnjak2017-07-173-106/+190
| |
* | Remove span error counter, count from metric refined with error tag should ↵mladens2017-07-121-4/+0
| | | | | | | | be used
* | Separate span metrics and counts for spans finished with an errormladens2017-07-121-0/+70
|/
* add SpanContextCodecSpecDiego2017-06-221-0/+106
|
* Prepare for the major cleanupIvan Topolnjak2017-04-245-508/+0
| | | | | | Moved all the original files from src/main to src/legacy-main, same with test files. Also removed the autoweave module, examples and bench as I'm planning to have them in separate repositories.
* Rename class vars so they do not shadow the def from their parent. Fixes ↵Ryan Bair2017-04-241-0/+28
| | | | #453. (#454)
* wipDiego2016-12-043-9/+9
|
* + core: allow accessing tags on TraceContext and Segment (#386)Bruno Filippone2016-08-191-0/+27
|
* + core: include Tags and Status in TraceInfo and SegmentInfo and closes #377Diego2016-07-271-0/+69
|
* + Kamon-core: introduce finishWithError(Throwable) for Traces and SegmentsDiego Parra2016-07-081-4/+4
| | | | * + kamon-core: introduce finishWithError(Throwable) for Traces and Segments
* = kamon-core: add context name and token to MDCdxspasojevic2016-06-181-0/+44
|
* Add tags for traces and closes #327Diego2016-04-222-3/+2
|
* wip, core/akka/spray are kind of migrated.Ivan Topolnjak2015-08-282-29/+0
|
* Merge branch 'samplers' of https://github.com/Elyrixia/Kamon into ↵Ivan Topolnjak2015-07-211-0/+76
|\ | | | | | | pr/elyrixia-samplers-206
| * + core: add a clock-sampler, fix ordered-sampler, add unit tests for samplersTristan Sallé2015-07-151-0/+76
| |
* | + Ensure that the TraceLocalStorage can be used from Java and close #196Diego2015-07-181-1/+16
|/
* ! core: move the TraceContext manipulation API to the Tracer companion object.Ivan Topolnjak2015-02-153-37/+37
|
* ! all: Kamon now works as a single instance in a companion object.Ivan Topolnjak2015-02-131-4/+4
|
* ! all: include license headersDiego2015-01-291-0/+16
|
* ! all: improve the metric recorders infrastructureIvan Topolnjak2015-01-243-114/+79
|
* + core: cleanup the simple trace implementationIvan Topolnjak2014-12-041-6/+8
|
* = core: first simple approach to providing traces and a subscription mechanism.Ivan Topolnjak2014-12-031-0/+101
|
* ! core: update HdrHistogram to 2.0.3Diego2014-11-191-1/+1
|
* + core: refactor MDC facilities and closes #100Diego2014-11-191-3/+34
|
* + core,play,spray: allow segments to identify the library they belong to.Ivan Topolnjak2014-11-091-2/+2
|
* ! core: replace Option[TraceContext] by empty object pattern and implement ↵Ivan Topolnjak2014-10-251-10/+14
| | | | basic segments with renaming.
* ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-036-433/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | 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: added license in TraceLocal and TraceLocalSpecDiego2014-05-201-1/+16
|
* + core: initial support for TraceLocal storageIvan Topolnak2014-05-201-0/+50
|
* + all: fix compilation issuesDiego2014-04-231-2/+2
|
* ensure that kamon.trace.ask-pattern-tracing setting is honored, closes #4Ivan Topolnjak2014-03-241-14/+23
|
* partial rewrite of kamon-newrelicIvan Topolnak2014-02-041-51/+0
|
* update spray server request instrumentation testsIvan Topolnak2014-01-314-5/+5
|
* remake of trace context and allow different tracing levelsIvan Topolnjak2014-01-316-93/+86
|
* rename UOW to TraceToken and generate it by default when a Trace startsIvan Topolnjak2014-01-273-3/+3
|
* integrate trace and metrics into the base projectIvan Topolnak2014-01-137-0/+482
|