aboutsummaryrefslogtreecommitdiff
path: root/kamon-playground/src/main/resources/application.conf
blob: 97785275bcaa05c6b2337c95a0fc17f12c8e6e78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
akka {
  loggers = [ "akka.event.slf4j.Slf4jLogger" ]
  loglevel = DEBUG

  extensions = ["kamon.newrelic.NewRelic"]

  actor {
    debug {
      unhandled = on
    }
  }
}

spray.can {
  host-connector {
    max-redirects = 10
  }
}

kamon {
  newrelic {
    app-name = "SimpleRequestProcessor"
    license-key = 2e24765acb032cb9e7207013b5ba3e2ab7d2d75c
  }
}

kamon {
  metrics {
    tick-interval = 1 second

    filters = [
      {
        actor {
          includes = [ "user/simple-service-actor" ]
          excludes = [ "system/*", "user/IO-*" ]
        }
      },
      {
        trace {
          includes = [ "*" ]
          excludes = []
        }
      },
      {
        dispatcher {
          includes = [ "default-dispatcher" ]
          excludes = []
        }
      },
      {
        custom-metric {
          includes = [ "*" ]
          excludes = [ ]
        }
      }
    ]
  }

}


kamon {
  metrics {
    actors {
      tracked = [
        "user/simple-service-actor",
        "other"
      ]
    }
  }
}