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: apl/tabular-operators/redact-operator.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,25 +94,25 @@ The query replaces all characters matching the pattern `.*` with the character `
94
94
</Tab>
95
95
<Tabtitle="OpenTelemetry traces">
96
96
97
-
In OpenTelemetry traces, use `redact` to anonymize trace IDs with their hashes while preserving the service structure.
97
+
In OpenTelemetry traces, use `redact` to anonymize Kubernetes node names with their hashes while preserving the service structure.
98
98
99
99
**Query**
100
100
101
101
```kusto
102
102
['otel-demo-traces']
103
-
| redact replaceHash=true @'.*' on trace_id
103
+
| redact replaceHash=true @'.*' on ['resource.k8s.node.name']
104
104
```
105
105
106
-
[Run in Playground](https://play.axiom.co/axiom-play-qf1k/query?initForm=%7B%22apl%22%3A%22%5B'otel-demo-traces'%5D%20%7C%20redact%20replaceHash%3Dtrue%20%40'.*'%20on%20trace_id%22%7D)
106
+
[Run in Playground](https://play.axiom.co/axiom-play-qf1k/query?initForm=%7B%22apl%22%3A%22%5B'otel-demo-traces'%5D%20%7C%20redact%20replaceHash%3Dtrue%20%40'.*'%20on%20%5B'resource.k8s.node.name'%5D%22%7D)
0 commit comments