Skip to content

Commit 9cde50a

Browse files
Copilotrootfs
andcommitted
Fix markdown lint errors and remove TRACING_FEATURE.md
Co-authored-by: rootfs <[email protected]>
1 parent c054384 commit 9cde50a

File tree

2 files changed

+18
-273
lines changed

2 files changed

+18
-273
lines changed

TRACING_FEATURE.md

Lines changed: 0 additions & 257 deletions
This file was deleted.

website/docs/tutorials/observability/tracing-quickstart.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -56,24 +56,26 @@ Check your console output for JSON trace spans:
5656
### Production Deployment with Jaeger
5757

5858
1. **Start Jaeger**:
59-
```bash
60-
docker run -d -p 4317:4317 -p 16686:16686 \
61-
jaegertracing/all-in-one:latest
62-
```
59+
60+
```bash
61+
docker run -d -p 4317:4317 -p 16686:16686 \
62+
jaegertracing/all-in-one:latest
63+
```
6364

6465
2. **Update config.yaml**:
65-
```yaml
66-
observability:
67-
tracing:
68-
enabled: true
69-
exporter:
70-
type: "otlp"
71-
endpoint: "localhost:4317"
72-
insecure: true
73-
sampling:
74-
type: "probabilistic"
75-
rate: 0.1
76-
```
66+
67+
```yaml
68+
observability:
69+
tracing:
70+
enabled: true
71+
exporter:
72+
type: "otlp"
73+
endpoint: "localhost:4317"
74+
insecure: true
75+
sampling:
76+
type: "probabilistic"
77+
rate: 0.1
78+
```
7779
7880
3. **View traces**: http://localhost:16686
7981

0 commit comments

Comments
 (0)