Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-boot-admin
Commits
6fd80072
Commit
6fd80072
authored
Sep 04, 2016
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add documentation for activiti and hystrix module
parent
da3435d4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
1 deletion
+61
-1
server-ui-modules.adoc
...-boot-admin-docs/src/main/asciidoc/server-ui-modules.adoc
+55
-0
server.adoc
spring-boot-admin-docs/src/main/asciidoc/server.adoc
+3
-0
application.yml
...ot-admin-sample-eureka/src/main/resources/application.yml
+3
-1
No files found.
spring-boot-admin-docs/src/main/asciidoc/server-ui-modules.adoc
0 → 100644
View file @
6fd80072
=== UI Modules ===
Additional to the core UI there are following modules which can be included by adding the jar-file to the classpath:
- spring-boot-admin-server-ui-activiti
- spring-boot-admin-server-ui-hystrix
==== Hystrix UI Module ====
The Hystrix module uses the hystrix-dashboard to display the metrics from Hystrix or Turbine streams.
. Add the ui module to your classpath:
+
[source,xml]
.pom.xml
----
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server-ui-hystrix</artifactId>
<version>{project-version}</version>
</dependency>
----
. Add the `/hystrix.stream` and/or `/turbine.stream` to the proxified endpoints:
+
[source,yml]
.application.yml
----
include::{samples-dir}/spring-boot-admin-sample-eureka/src/main/resources/application.yml[tags=configuration-ui-hystrix]
----
==== Activiti UI Module ====
The Activiti module shows information from the `/activti` endpint.
. Add the ui module to your classpath:
+
[source,xml]
.pom.xml
----
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server-ui-activiti</artifactId>
<version>{project-version}</version>
</dependency>
----
. Add the `/activiti` to the proxified endpoints:
+
[source,yml]
.application.yml
----
spring.boot.admin.routes.endpoints: env,metrics,trace,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,activiti
----
\ No newline at end of file
spring-boot-admin-docs/src/main/asciidoc/server.adoc
View file @
6fd80072
...
...
@@ -27,3 +27,5 @@ include::server-discovery.adoc[]
include::server-clustering.adoc[]
include::server-notifications.adoc[]
include::server-ui-modules.adoc[]
\ No newline at end of file
spring-boot-admin-samples/spring-boot-admin-sample-eureka/src/main/resources/application.yml
View file @
6fd80072
...
...
@@ -13,4 +13,6 @@ eureka:
defaultZone
:
http://localhost:8761/eureka/
# end::configuration-eureka[]
spring.boot.admin.routes.endpoints
:
env,metrics,trace,dump,jolokia,info,configprops,trace,activiti,logfile,refresh,flyway,liquibase,heapdump,hystrix.stream
# tag::configuration-ui-hystrix[]
spring.boot.admin.routes.endpoints
:
env,metrics,trace,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,hystrix.stream,turbine.stream
# end::configuration-ui-hystrix[]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment