update all

This commit is contained in:
2024-03-31 20:12:36 +02:00
parent 0a61199bd7
commit e64ae07eee
135 changed files with 9726 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

3
Jaeger/LICENSE Normal file
View File

@ -0,0 +1,3 @@
Additional permission under GNU GPL version 3 section 7
If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. Corresponding Source for a non-source form of such a combination shall include the source code for the parts of [name of library] used as well as that of the covered work.

27
Jaeger/README.md Normal file
View File

@ -0,0 +1,27 @@
# Jaeger
This docker compose setup starts Jaeger and hotrod services.
To start the service run:
```console
docker compose up
use -d option to start the services in detached mode
```
### Ports
Below Ports are exposed by the services, you can always change them according to your need in the yml
[here](https://github.com/ninadingole/docker-images/blob/a423f995b3388320df1c9a3b404694ff7a1aad13/jaeger/docker-compose.yml#L1)
| Port | Description |
|--------|-------------------|
| 6831 | Jaeger Agent Port |
| 16686 | Jaeger UI Port |
| 8082 | Hotrod UI Port |
### Infrastructure model
![Infrastructure model](.infragenie/infrastructure_model.png)

19
Jaeger/docker-compose.yml Normal file
View File

@ -0,0 +1,19 @@
version: '3.8'
services:
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- '6831:6831/udp'
- '16686:16686'
hotrod:
image: jaegertracing/example-hotrod:latest
ports:
- '8082:8080'
command: ['all']
environment:
- JAEGER_AGENT_HOST=jaeger
# Note: if your application is using Node.js Jaeger Client, you need port 6832,
# unless issue https://github.com/jaegertracing/jaeger/issues/1596 is resolved.
- JAEGER_AGENT_PORT=6831
depends_on:
- jaeger