File tree 1 file changed +4
-4
lines changed
site/content/how-to/monitoring
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ The first step is to install the collectors. NGINX Gateway Fabric will be config
24
24
Create the namespace:
25
25
26
26
``` shell
27
- kubectl create namespace monitoring
27
+ kubectl create namespace tracing
28
28
```
29
29
30
30
Download the following files containing the configurations for the collectors:
@@ -37,13 +37,13 @@ Download the following files containing the configurations for the collectors:
37
37
Then install them:
38
38
39
39
``` shell
40
- kubectl apply -f otel-collector.yaml -f jaeger.yaml -n monitoring
40
+ kubectl apply -f otel-collector.yaml -f jaeger.yaml -n tracing
41
41
```
42
42
43
43
Ensure the Pods are running:
44
44
45
45
``` shell
46
- kubectl -n monitoring get pods
46
+ kubectl -n tracing get pods
47
47
```
48
48
49
49
``` text
@@ -55,7 +55,7 @@ otel-collector-f786b7dfd-h2x9l 1/1 Running 0 9s
55
55
Once running, you can access the Jaeger dashboard by using port-forwarding in the background:
56
56
57
57
``` shell
58
- kubectl port-forward -n monitoring svc/jaeger 16686:16686 &
58
+ kubectl port-forward -n tracing svc/jaeger 16686:16686 &
59
59
```
60
60
61
61
Visit [ http://127.0.0.1:16686 ] ( http://127.0.0.1:16686 ) to view the dashboard.
You can’t perform that action at this time.
0 commit comments