Hey! I’ve been using otel's data output to the console for a while, and I found that using `OTEL_BSP_SCHEDULE_DELAY` to batch the logs helps reduce the flood of data.
For filtering, I use `awk` to parse the logs. It’s a bit old-school, but it works like a charm. For example:
```bash
otel-collector | awk '/error/ {print $0}'
```
This filters out only the error logs.
For filtering, I use `awk` to parse the logs. It’s a bit old-school, but it works like a charm. For example:
```bash
otel-collector | awk '/error/ {print $0}'
```
This filters out only the error logs.
