aboutsummaryrefslogtreecommitdiff
path: root/kamon-status-page/src/main/resources/reference.conf
blob: f5be516cfff8035eae09c53b26874a0be9c82130 (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
kamon {
  status-page {

    # When enabled Kamon will start an embedded web server to publish the status page mini-site, which contains basic
    # system information that can be used for debugging and troubleshooting issues with Kamon.
    enabled = true

    # Controls the hostname and port on which the status page embedded server will be listening.
    listen {
      hostname = "0.0.0.0"
      port = 5266
    }
  }

  #
  # This section registers the status page module to be picked up by Kamon core when it is on the classpath.
  #
  modules {

    "Status Page" {
      enabled = yes
      kind = plain
      class = "kamon.status.page.StatusPage"
      description = "Exposes an embedded web server with a single page app displaying Kamon status information."
    }
  }
}