aboutsummaryrefslogtreecommitdiff
path: root/kamon-status-page/src/main/resources/reference.conf
diff options
context:
space:
mode:
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