-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgraded spring dependency (boot 3.3) and jdk 17: changed swagger and…
… metric monitoring; add docker compose for POC with grafana and prometheus; still a problem with docker on root project
- Loading branch information
Massimo Ugues
committed
May 29, 2024
1 parent
4a89661
commit 45104c0
Showing
17 changed files
with
9,804 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: '3.7' | ||
|
||
services: | ||
prometheus: | ||
image: prom/prometheus:v2.44.0 | ||
container_name: prometheus | ||
ports: | ||
- "9090:9090" | ||
volumes: | ||
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml | ||
|
||
grafana: | ||
image: grafana/grafana:9.5.2 | ||
container_name: grafana | ||
ports: | ||
- "3000:3000" | ||
restart: unless-stopped | ||
volumes: | ||
- ./grafana/provisioning/datasources:/etc/grafana/provisioning/datasources |
Oops, something went wrong.