You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The application will automatically register with Spring Boot Admin upon start up.
139
139
140
-
Log in to the Spring Boot Admin UI at `http://localhost:8082` to interact with the application.
140
+
Log in to the Spring Boot Admin UI at `http://localhost:8080` to interact with the application.
141
+
142
+
### Registration Notes
143
+
When registering a service in Spring Boot Admin, note that:
144
+
***Docker** - If the Spring Boot Admin is running in a container while the managed service is running in the docker-host directly, the `app_url` and `pyctuator_endpoint_url` should use `host.docker.internal` as the url's host so Spring Boot Admin will be able to connect to the monitored service.
145
+
***Http Traces** - In order for the "Http Traces" tab to be able to hide requests sent by Spring Boot Admin to the Pyctuator endpoint, `pyctuator_endpoint_url` must be using the same host and port as `app_url`.
141
146
142
147
## Advanced Configuration
143
148
The following sections are intended for advanced users who want to configure advanced Pyctuator features.
@@ -274,9 +279,9 @@ To run these examples, you'll need to have Spring Boot Admin running in a local
274
279
275
280
Unless the example includes a docker-compose file, you'll need to start Spring Boot Admin using docker directly:
276
281
```sh
277
-
docker run -p 8082:8082 michayaak/spring-boot-admin:2.2.2
282
+
docker run -p 8080:8080 michayaak/spring-boot-admin:2.2.3-1
278
283
```
279
-
(the docker image's tag represents the version of Spring Boot Admin, so if you need to use version `2.0.0`, use `michayaak/spring-boot-admin:2.0.0` instead).
284
+
(the docker image's tag represents the version of Spring Boot Admin, so if you need to use version `2.0.0`, use `michayaak/spring-boot-admin:2.0.0` instead, note it accepts connections on port 8082).
280
285
281
286
The examples include
282
287
*[FastAPI Example](examples/FastAPI/README.md) - demonstrates integrating Pyctuator with the FastAPI web framework.
0 commit comments