From 4d828e1a3195e55365c865aa3a78af9668742643 Mon Sep 17 00:00:00 2001 From: Ivan Topolnjak Date: Mon, 24 Apr 2017 13:54:40 +0200 Subject: Prepare for the major cleanup 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. --- .../src/main/resources/application.conf | 73 ---------------------- 1 file changed, 73 deletions(-) delete mode 100644 kamon-examples/kamon-fluentd-example/src/main/resources/application.conf (limited to 'kamon-examples/kamon-fluentd-example/src/main/resources/application.conf') diff --git a/kamon-examples/kamon-fluentd-example/src/main/resources/application.conf b/kamon-examples/kamon-fluentd-example/src/main/resources/application.conf deleted file mode 100644 index bb69abd3..00000000 --- a/kamon-examples/kamon-fluentd-example/src/main/resources/application.conf +++ /dev/null @@ -1,73 +0,0 @@ -# ===================================== # -# Kamon-Fluentd Reference Configuration # -# ===================================== # - -kamon { - metric.filters { - akka-actor { - includes = ["**"], - } - - akka-dispatcher { - includes = ["**"] - } - - akka-router { - includes = ["**"] - } - } - - fluentd { - # Hostname and port of fluentd server to which kamon fluentd sends metrics. - hostname = "localhost" - port = 24224 - - # tag prefix of metrics data which is sent to fluentd server - tag = "kamon.fluentd" - - # Interval between metrics data flushes to fluentd server. - # It's value must be equal or greater than the kamon.metric.tick-interval setting. - flush-interval = 10 seconds - - # Your app name - application-name = "kamon-fluentd-example" - - # Subscription patterns used to select which metrics will be pushed to Fluentd. Note that first, metrics - # collection for your desired entities must be activated under the kamon.metrics.filters settings. - subscriptions { - histogram = [ "**" ] - min-max-counter = [ "**" ] - gauge = [ "**" ] - counter = [ "**" ] - trace = [ "**" ] - trace-segment = [ "**" ] - akka-actor = [ "**" ] - akka-dispatcher = [ "**" ] - akka-router = [ "**" ] - system-metric = [ "**" ] - http-server = [ "**" ] - } - - # statistic values to be reported for histogram type metrics - # (i.e. Histogram, MinMaxCounter, Gauge). - histogram-stats { - # stats values: - # "count", "min", "max", "average", "percentiles" are supported. - # you can use "*" for wildcards. - subscription = [ "count", "min", "max", "average", "percentiles" ], - - # percentile points: - # this will be used when you set "percentiles" in "subscription" above. - # In this example, kamon-fluentd reports 50th 90th, 99th and 99.9th percentiles. - percentiles = [50.0, 90.0, 99.0, 99.9] - } - } - - modules { - kamon-fluentd { - auto-start = yes - requires-aspectj = no - extension-class = "kamon.fluentd.Fluentd" - } - } -} \ No newline at end of file -- cgit v1.2.3