Skip to content

Commit

Permalink
Changed incorrect port number
Browse files Browse the repository at this point in the history
As mqtt2promethius is built from source,
it should export 9641:9641 instead of 8002:8002

Fixes issue #17
  • Loading branch information
vikramsubramanian committed Sep 18, 2020
1 parent 3579483 commit f14e2a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hack/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
context: ../
dockerfile: Dockerfile
ports:
- 8002:8002
- 9641:9641
volumes:
- type: bind
source: ./mqtt2prometheus.yaml
Expand All @@ -22,4 +22,4 @@ services:
volumes:
- type: bind
source: ./prometheus.yml
target: /etc/prometheus/prometheus.yml
target: /etc/prometheus/prometheus.yml
2 changes: 1 addition & 1 deletion hack/prometheus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ scrape_configs:
scheme: http
static_configs:
- targets:
- mqtt2prometheus:8002
- mqtt2prometheus:9641

0 comments on commit f14e2a7

Please sign in to comment.