You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/12/01 12:01:44 UTC

[camel-performance-tests] branch main updated: Monitoring module: No need for port bindings if network mode is host

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-performance-tests.git


The following commit(s) were added to refs/heads/main by this push:
     new fd4c771  Monitoring module: No need for port bindings if network mode is host
fd4c771 is described below

commit fd4c771125e05c5a9dffaf3604f4d45a6c2fab0b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Dec 1 13:00:46 2021 +0100

    Monitoring module: No need for port bindings if network mode is host
---
 profiling/monitoring/docker-compose.yml | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/profiling/monitoring/docker-compose.yml b/profiling/monitoring/docker-compose.yml
index d08ccae..102c21f 100644
--- a/profiling/monitoring/docker-compose.yml
+++ b/profiling/monitoring/docker-compose.yml
@@ -2,18 +2,14 @@ version: "3.9"
 services:
   jfr-datasource:
     image: "croway/jfr-datasource:2.1.0"
-    ports:
-      - "8080:8080"
     container_name: jfr-datasource
     network_mode: host
   grafana:
     image: "grafana/grafana"
-    ports:
-      - "3000:3000"
     environment:
       - GF_INSTALL_PLUGINS=grafana-simple-json-datasource
     container_name: grafana
     volumes:
       - ./provisioning:/etc/grafana/provisioning
       - ./dashboards:/var/lib/grafana/dashboards
-    network_mode: host
\ No newline at end of file
+    network_mode: host