aboutsummaryrefslogtreecommitdiff
path: root/kamon-status-page/src/main/resources/reference.conf
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2019-03-11 22:21:06 +0100
committerIvan Topolnjak <ivantopo@gmail.com>2019-03-15 11:36:11 +0100
commitec83a72879378bc9eedea24f828e4d30fed95e92 (patch)
tree96fd746fc13f4ffb914d8e59c4ea074513877556 /kamon-status-page/src/main/resources/reference.conf
parent5df3351de8a885e2eb2b52f75817347a599b2327 (diff)
downloadKamon-ec83a72879378bc9eedea24f828e4d30fed95e92.tar.gz
Kamon-ec83a72879378bc9eedea24f828e4d30fed95e92.tar.bz2
Kamon-ec83a72879378bc9eedea24f828e4d30fed95e92.zip
separate the status-page project from the status API
Diffstat (limited to 'kamon-status-page/src/main/resources/reference.conf')
-rw-r--r--kamon-status-page/src/main/resources/reference.conf27
1 files changed, 27 insertions, 0 deletions
diff --git a/kamon-status-page/src/main/resources/reference.conf b/kamon-status-page/src/main/resources/reference.conf
new file mode 100644
index 00000000..f5be516c
--- /dev/null
+++ b/kamon-status-page/src/main/resources/reference.conf
@@ -0,0 +1,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."
+ }
+ }
+} \ No newline at end of file