Skip to content

Commit

Permalink
Ensure the demo app collector is listening on all interfaces (#508)
Browse files Browse the repository at this point in the history
* ensure collector is listening on all interfaces (required for containerization)

* update docker compose syntax
  • Loading branch information
breedx-splk authored Aug 6, 2024
1 parent 059a829 commit 1d2ce72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ a quick and dirty example of how to get the agent initialized.
First, start up the collector and jaeger with docker-compose:

```bash
$ docker-compose build
$ docker-compose up
$ docker compose build
$ docker compose up
```

Then run the demo app in the Android emulator and navigate to http://localhost:16686
Expand Down
1 change: 1 addition & 0 deletions demo-app/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ services:
image: "jaegertracing/all-in-one:1.59"
environment:
- COLLECTOR_OTLP_ENABLED=true
- COLLECTOR_OTLP_HTTP_HOST_PORT=0.0.0.0:4318
ports:
- "16686:16686" # UI

0 comments on commit 1d2ce72

Please sign in to comment.