aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into release-legacy-akka-2.2Ivan Topolnjak2015-05-0941-1154/+1174
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: kamon-akka/src/test/scala/kamon/akka/RouterMetricsSpec.scala kamon-akka/src/test/scala/kamon/akka/instrumentation/ActorCellInstrumentationSpec.scala kamon-akka/src/test/scala/kamon/akka/instrumentation/AskPatternInstrumentationSpec.scala kamon-core/src/test/scala/kamon/metric/TraceMetricsSpec.scala kamon-core/src/test/scala/kamon/testkit/BaseKamonSpec.scala kamon-play/src/main/scala/kamon/play/action/KamonTraceActions.scala kamon-play/src/main/scala/kamon/play/instrumentation/RequestInstrumentation.scala kamon-play/src/main/scala/kamon/play/instrumentation/WSInstrumentation.scala kamon-play/src/test/scala/kamon/play/RequestInstrumentationSpec.scala project/Dependencies.scala project/Settings.scala
| * = core,playground: automatic code formatting.Ivan Topolnjak2015-05-041-1/+1
| |
| * + core: java variant of withMdcDiego2015-05-011-0/+6
| |
| * = core: fix typo.Ivan Topolnjak2015-04-261-1/+1
| |
| * = core: correctly print module names when auto-starting.Ivan Topolnjak2015-04-201-1/+1
| |
| * = 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-177-35/+72
| |
| * = core: use kamon.util.Function instead of the java 8 equivalent.Ivan Topolnjak2015-04-171-2/+1
| |
| * ! core: subscribe permanently to metrics data by default.Ivan Topolnjak2015-04-061-2/+2
| |
| * = core: minor cleanup of metric keys and units of measurements.Ivan Topolnjak2015-04-054-42/+40
| |
| * + core: introduce .factory members on trace and segment recorders.Ivan Topolnjak2015-03-311-0/+6
| |
| * + core: simple util to transform java maps to scala maps when creating tags.Ivan Topolnjak2015-03-291-0/+14
| |
| * = core: introduce SameThreadExecutionContext for small code blocks that ↵Diego2015-03-231-0/+30
| | | | | | | | don't need to be run on a separate thread
| * ! akka: prefix actors, routers and dispatchers with the actor system name.Ivan Topolnjak2015-03-131-0/+3
| |
| * + log-reporter: include dispatcher metrics and close #163Diego2015-03-132-8/+5
| |
| * = core: include license headersDiego2015-03-124-0/+64
| |
| * = core: put the ModuleLoader back in place for auto-starting modules.Ivan Topolnjak2015-03-128-240/+112
| |
| * ! all: introduced support for metric tags.Ivan Topolnjak2015-03-0917-513/+454
| |
| * ! kamon-annotation: defined instruments @Trace @Segment @Gauge @Timed ↵Diego2015-03-012-4/+33
| | | | | | | | @Counted @Histogram and full implemetation
| * ! core: move the TraceContext manipulation API to the Tracer companion object.Ivan Topolnjak2015-02-159-86/+85
| |
| * ! core: drop the Extension postfix on all core components.Ivan Topolnjak2015-02-159-40/+39
| |
| * = core: rename UserMetrics to SimpleMetrics.Ivan Topolnjak2015-02-153-45/+45
| |
| * + core: add a Kamon.shutdown() method.Ivan Topolnjak2015-02-151-0/+6
| |
* | = core: fix compilation issue with ConfigTools.Ivan Topolnjak2015-03-241-1/+1
| |
* | Merge branch 'master' into release-legacy-akka-2.2Ivan Topolnjak2015-02-154-7/+6
|\| | | | | | | | | | | | | | | | | | | | | Conflicts: kamon-core/src/main/scala/kamon/metric/instrument/InstrumentSettings.scala kamon-core/src/main/scala/kamon/trace/TracerExtensionSettings.scala kamon-jdbc/src/main/scala/kamon/jdbc/Jdbc.scala kamon-newrelic/src/main/scala/kamon/newrelic/MetricReporter.scala project/Dependencies.scala project/Projects.scala project/Settings.scala
| * = all: stop using config.getDuration in favor of config.getFiniteDuration.Ivan Topolnjak2015-02-154-15/+13
| |
* | Merge branch 'single-kamon-instance-per-jvm' into release-legacy-akka-2.2Ivan Topolnjak2015-02-1488-3878/+3656
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: kamon-akka-remote/src/test/scala/kamon/akka/instrumentation/RemotingInstrumentationSpec.scala kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala kamon-core/src/main/scala/kamon/instrumentation/akka/AskPatternInstrumentation.scala kamon-core/src/main/scala/kamon/metric/MetricsExtension.scala kamon-core/src/main/scala/kamon/metric/Subscriptions.scala kamon-core/src/main/scala/kamon/metric/instrument/Gauge.scala kamon-core/src/main/scala/kamon/metric/instrument/MinMaxCounter.scala kamon-core/src/test/scala/kamon/instrumentation/akka/ActorCellInstrumentationSpec.scala kamon-core/src/test/scala/kamon/metric/ActorMetricsSpec.scala kamon-core/src/test/scala/kamon/metric/RouterMetricsSpec.scala kamon-core/src/test/scala/kamon/metric/SubscriptionsProtocolSpec.scala kamon-core/src/test/scala/kamon/metric/TickMetricSnapshotBufferSpec.scala kamon-core/src/test/scala/kamon/metric/TraceMetricsSpec.scala kamon-core/src/test/scala/kamon/metric/UserMetricsSpec.scala kamon-core/src/test/scala/kamon/trace/TraceContextManipulationSpec.scala kamon-datadog/src/main/scala/kamon/datadog/Datadog.scala kamon-newrelic/src/main/scala/kamon/newrelic/Agent.scala kamon-newrelic/src/main/scala/kamon/newrelic/MetricReporter.scala kamon-play/src/main/scala/kamon/play/Play.scala kamon-play/src/main/scala/kamon/play/action/KamonTraceActions.scala kamon-play/src/main/scala/kamon/play/instrumentation/RequestInstrumentation.scala kamon-play/src/main/scala/kamon/play/instrumentation/WSInstrumentation.scala kamon-play/src/test/scala/kamon/play/RequestInstrumentationSpec.scala kamon-statsd/src/main/scala/kamon/statsd/StatsD.scala project/Dependencies.scala version.sbt
| * ! core: special treatment of settings.Ivan Topolnjak2015-02-144-35/+30
| |
| * ! all: Kamon now works as a single instance in a companion object.Ivan Topolnjak2015-02-1321-215/+379
| |
| * ! core: revised semantics of .register on Metrics module to match our docs.Ivan Topolnjak2015-02-043-5/+21
| |
| * + core: add create methods for Entity.Ivan Topolnjak2015-02-041-0/+6
| |
| * ! all: include license headersDiego2015-01-313-0/+48
| |
| * + all: use ModuleSupervisor init all auto-start modules.Ivan Topolnjak2015-01-308-94/+174
| | | | | | | | | | | | | | | | | | | | | | The new ModuleSupervisor implementation will make use of special configuration keys under the `kamon.modules` section to detect all the available modules in the classpath and do two things with that info: 1. Log the AspectJ Weaver missing error if any of the available modules requires AspectJ. 2. Start all available modules that are marked with the auto-start setting.
| * + core: add create and shutdown methods to Kamon.Ivan Topolnjak2015-01-291-0/+19
| |
| * ! all: include license headersDiego2015-01-2926-0/+415
| |
| * = core: minor code formatting change.Ivan Topolnjak2015-01-291-1/+1
| |
| * ! core,akka: use our own dispatcher instead of Akka's default dispatcher.Ivan Topolnjak2015-01-291-11/+6
| |
| * = core: protect against negative values on diff gauges recordings.Ivan Topolnjak2015-01-291-2/+5
| |
| * = core: remove println left from testing.Ivan Topolnjak2015-01-261-13/+4
| |
| * ! core,statsd: set the default tick and flush intervals to 10 seconds.Ivan Topolnjak2015-01-261-1/+1
| |
| * ! core: ensure that the subscriptions dispatcher is correctly startedIvan Topolnjak2015-01-262-2/+3
| |
| * ! all: improve the metric recorders infrastructureIvan Topolnjak2015-01-2465-2027/+2122
| |
| * = core: workaround intellij import name shadowing issue.Ivan Topolnjak2014-12-291-2/+3
| | | | | | | | More details can be found at: https://youtrack.jetbrains.com/issue/SCL-8074
| * ! core,akka: separate all akka instrumentation into it's own kamon-akka ↵Ivan Topolnjak2014-12-2820-1976/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | module, related to #136. All Akka-related instrumentation and code has been moved to the kamon-akka module, including the filters for actor, dispatcher and router metrics. Also the following changes are included: - Router Metrics are now working properly, related to #139. - Cleanup the log output for this module, related to #142. - Some minor cleanups in various tests. This PR breaks the reporting modules which will need to wait for #141 to be ready to come back to life.
| * + system-metrics: fix #135 and includes the following new metrics:Diego2014-12-281-4/+4
| | | | | | | | | | | | | | | | | | ** DiskMetrics ** NonHeapMetrics ** LoadAverageMetrics ** ThreadMetrics ** ClassLoadingMetrics and closes #131
| * = core: include new test case in GlobalPathFilterSpecDiego2014-12-241-1/+13
| |
| * = core: modified version of GlobPathFilter and improve GlobPahFilterSpecDiego2014-12-244-55/+132
| |
| * + core: introduce simplified version of GlobPathFilter and resolve exact ↵Diego2014-12-245-146/+89
| | | | | | | | actor metric filter issue