You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,26 @@
18
18
19
19
💥💥💥 Jaeger v2 is out! Read the [blog post](https://medium.com/jaegertracing/jaeger-v2-released-09a6033d1b10) and [try it out](https://www.jaegertracing.io/docs/latest/getting-started/).
20
20
21
+
## Quick Start
22
+
23
+
Get Jaeger running in seconds with Docker:
24
+
25
+
```bash
26
+
# Run Jaeger all-in-one (includes UI, collector, query, and in-memory storage)
27
+
docker run --rm --name jaeger \
28
+
-p 16686:16686 \
29
+
-p 4317:4317 \
30
+
-p 4318:4318 \
31
+
jaegertracing/jaeger:latest
32
+
33
+
# Access the UI at http://localhost:16686
34
+
# Send traces via OTLP: gRPC on port 4317, HTTP on port 4318
35
+
```
36
+
37
+
For production deployments and more options, see the [Getting Started Guide](https://www.jaegertracing.io/docs/latest/getting-started/).
38
+
39
+
## Architecture
40
+
21
41
```mermaid
22
42
graph TD
23
43
SDK["OpenTelemetry SDK"] --> |HTTP or gRPC| COLLECTOR
0 commit comments