aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Setting version to 0.2.3v0.2.3Ivan Topolnjak2014-08-051-1/+1
|
* Merge branch 'master' into release-0.2Ivan Topolnjak2014-08-0435-230/+340
|\ | | | | | | | | Conflicts: version.sbt
| * = datadog,sysmetrics: minor formatting changesIvan Topolnjak2014-08-043-6/+5
| |
| * = newrelic: upgrade to the latest user metricsIvan Topolnjak2014-08-042-3/+11
| |
| * = logreporter: upgrade to the latest user metricsIvan Topolnjak2014-08-041-14/+39
| |
| * + datadog: subscribe and report user metricsIvan Topolnjak2014-08-042-4/+23
| |
| * = core: remove the user- prefix on all user metricsIvan Topolnjak2014-08-041-26/+11
| |
| * + statsd: subscribe to user metricsIvan Topolnjak2014-08-041-1/+17
| |
| * = core: allow subscribing to user metrics and give decent namesIvan Topolnjak2014-08-043-198/+245
| |
| * = core: minor fix in actor metrics specIvan Topolnjak2014-08-041-4/+4
| |
| * = system-metrics: ensure all related sigar related files are included in the ↵Diego2014-08-0323-3/+2
| | | | | | | | final jar, closes #70
| * = core: cleanup actor metrics recorder after the actor is stopped, closes #69Ivan Topolnjak2014-08-023-4/+16
| |
| * Setting version to 0.3.3-SNAPSHOTIvan Topolnjak2014-07-291-1/+1
| |
| * Setting version to 0.3.2v0.3.2Ivan Topolnjak2014-07-291-1/+1
| |
* | Setting version to 0.2.3-SNAPSHOTIvan Topolnjak2014-07-291-1/+1
| |
* | Setting version to 0.2.2v0.2.2Ivan Topolnjak2014-07-291-1/+1
| |
* | Merge branch 'master' into release-0.2Ivan Topolnjak2014-07-29147-1788/+5491
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: kamon-core/src/main/scala/kamon/metrics/Subscriptions.scala kamon-core/src/test/scala/kamon/instrumentation/akka/ActorCellInstrumentationSpec.scala kamon-datadog/src/main/scala/kamon/datadog/Datadog.scala kamon-play/src/main/scala/kamon/play/instrumentation/WSInstrumentation.scala kamon-play/src/test/scala/kamon/play/RequestInstrumentationSpec.scala kamon-play/src/test/scala/kamon/play/WSInstrumentationSpec.scala kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala kamon-statsd/src/main/scala/kamon/statsd/StatsD.scala project/Projects.scala version.sbt
| * + logreporter: new log reporter for trace, actor and user metrics, closes #57Ivan Topolnjak2014-07-294-4/+253
| | | | | | | | | | | | The new kamon-log-reporter module subscribes itselfs for trace, actor and user metrics and prints the values using ActorLogging in a pretty ascii table format.
| * = core: subscription protocol specification, closes #51Ivan Topolnjak2014-07-284-31/+207
| |
| * = kamon-system-metrics: ignore system metrics test for nowDiego2014-07-271-3/+4
| |
| * = newrelic: upgrade to the latest metrics scheme, closes #54Ivan Topolnjak2014-07-276-17/+29
| |
| * kamon-system-metrics: add system metrics to datadog and statsd modulesDiego2014-07-278-51/+58
| |
| * = sysmetrics: remove empty lines at the end of sigar indexIvan Topolnjak2014-07-271-2/+1
| |
| * + play: record http server metrics, closes #56Ivan Topolnjak2014-07-274-3/+43
| |
| * = kamon-system-metrics: system metrics loaded banner + some OS info with ↵Diego2014-07-272-6/+40
| | | | | | | | system load average and uptime
| * = kamon-system-metrics: source formatDiego2014-07-254-16/+17
| |
| * = kamon-system-metrics: round math in toLongDiego2014-07-251-3/+3
| |
| * = kamon-system-metrics: collector actor refactorDiego2014-07-258-546/+145
| |
| * = kamon-system-metrics: introduce actor system collectorDiego2014-07-237-66/+125
| |
| * = kamon-system-metrics: Initialization-on-demand holder idiom in order to ↵Diego2014-07-2326-16/+46
| | | | | | | | load one instance of Sigar
| * = kamon-system-metrics: fork in testDiego2014-07-231-0/+1
| |
| * + travis: create a temp folder before buildingIvan Topolnjak2014-07-231-0/+1
| |
| * + core,spray: create and implement http server metrics for spray, related to #56Ivan Topolnjak2014-07-236-38/+203
| |
| * Update .travis.ymlDiego Parra2014-07-221-0/+3
| | | | | | + travis: "java.io.tmpdir" environment variable
| * = kamon-system-metrics: added scale in Memory and Network metricsDiego2014-07-222-8/+8
| |
| * = kamon-system-metrics: SynchronizedSigar in order to share the same instanceDiego2014-07-224-5/+436
| |
| * ! kamon-system-metrics: introducing System and JVM metrics moduleDiego2014-07-2142-369/+1127
| |
| * ! core: introduce system + jvm metricsDiego2014-07-1031-3/+388
| |
| * ! statsd,datadog: reformat metric names to get a better display of ↵Ivan Topolnjak2014-07-106-39/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | automatically named traces, closes #35 After a bit of testing it seems like instead of generating more friendly names by default, we need to do changes that are specific to each module (StatsD and Datadog) in order to make it work properly. Here is a list of the introduced changes: - StatsD - Change dots (.) to underscores (_) on the host name string. - Change ': ' to single underscore and spaced to underscore. Userful for automatically generated http trace names. - Change '/' to underscore. Ideally the dashboard could replace '_' with '/' to display it like a path. - Datadog - Change ': ' to ':'. Userful for automatically generated http trace names.
| * = build: avoid unnecessary compile dependency on kamon-testkit from kamon-sprayIvan Topolnjak2014-07-093-3/+4
| |
| * + core: log a configurable error message when the application was started ↵Ivan Topolnjak2014-07-094-1/+54
| | | | | | | | with the AspectJ Weaver, closes #48
| * + core: create the new KamonStandalone helper, closes #47Ivan Topolnjak2014-07-083-2/+99
| |
| * = build: ensure that no dependency to kamon-macros is exposed in the ↵Ivan Topolnjak2014-07-061-1/+1
| | | | | | | | generated pom.xml
| * = play: fixes LoggerLikeInstrumentationSpecDiego2014-07-061-25/+21
| |
| * = play: comment test because not run in travisDiego2014-07-061-2/+3
| |
| * + play: introducing LoggerLikeInstrumentation in order to copy the ↵Diego2014-07-065-23/+217
| | | | | | | | properties of TraceLocalStorage to MDC
| * = core: ensure that no automatic metric flushes occur during certain testsIvan Topolnjak2014-07-045-0/+9
| |
| * + core: introduce the new ↵Ivan Topolnjak2014-07-0411-35/+54
| | | | | | | | kamon.metrics.default-collection-context-buffer-size setting
| * = all: upgrade to Scala 2.10.4Ivan Topolnjak2014-07-031-1/+1
| |
| * = build: ensure that the java code is also targeted to Java 1.6Ivan Topolnjak2014-07-031-0/+3
| |