File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
porch/config/development/tracing Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ ### How to enable jaeger tracing
2
+
3
+ If you want to enable jaeger tracing of the porch-server:
4
+
5
+ * Apply the [ deployment.yaml manifest] ( deployment.yaml ) from this directory
6
+
7
+ ```
8
+ kubectl apply -f deployment.yaml
9
+ ```
10
+
11
+ * Add the commented out env var OTEL to the porch-server manifest:
12
+
13
+ ```
14
+ kubectl edit deployment -n porch-system porch-server
15
+ ```
16
+
17
+ ```
18
+ env:
19
+ # Uncomment to enable trace-reporting to jaeger
20
+ #- name: OTEL
21
+ # value: otel://jaeger-oltp:4317
22
+ ```
23
+
24
+ * Port-forward the jaeger http port to your local machine:
25
+
26
+ ```
27
+ kubectl port-forward -n porch-system service/jaeger-http 16686
28
+ ```
29
+
30
+ * Open your browser to the UI on http://localhost:16686
You can’t perform that action at this time.
0 commit comments