Skip to content

Commit

Permalink
Fix invalid syntax in filterprocessor OTTL example (#32721)
Browse files Browse the repository at this point in the history
**Description:** 
`and` is the right syntax - this tripped someone up on slack
https://cloud-native.slack.com/archives/C01N6P7KR6W/p1714160735816669?thread_ts=1714160659.983649&cid=C01N6P7KR6W
  • Loading branch information
swar8080 authored Apr 26, 2024
1 parent 5b1b8e6 commit 1c13d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processor/filterprocessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ processors:
error_mode: ignore
metrics:
datapoint:
- metric.name == "k8s.pod.phase" && value_int == 4
- metric.name == "k8s.pod.phase" and value_int == 4
```
#### Dropping non-HTTP spans
Expand Down

0 comments on commit 1c13d9e

Please sign in to comment.