docs: put snippet to add to docker-compose-local.yaml in changelog
Some checks failed
CI / 🤖 Check dependabot status (push) Has been cancelled
CI / 🐧 Test on Linux (${{ github.ref_type == 'tag' }}, misc) (push) Has been cancelled
CI / 🐧 Test on Linux (coverage) (push) Has been cancelled
CI / 🐧 Test on Linux (regular) (push) Has been cancelled
CI / ❄️ Build on Nix (push) Has been cancelled
CI / 🍏 Build and test on macOS (push) Has been cancelled
CI / 🧪 End-to-end testing (push) Has been cancelled
CI / 🔍 Upload code coverage (push) Has been cancelled
CI / 🔬 Test only Go (push) Has been cancelled
CI / 🔬 Test only JS (${{ needs.dependabot.outputs.package-ecosystem }}, 20) (push) Has been cancelled
CI / 🔬 Test only JS (${{ needs.dependabot.outputs.package-ecosystem }}, 22) (push) Has been cancelled
CI / 🔬 Test only JS (${{ needs.dependabot.outputs.package-ecosystem }}, 24) (push) Has been cancelled
CI / ⚖️ Check licenses (push) Has been cancelled
CI / 🐋 Build Docker images (push) Has been cancelled
CI / 🐋 Tag Docker images (push) Has been cancelled
CI / 🚀 Publish release (push) Has been cancelled
Update Nix dependency hashes / Update dependency hashes (push) Has been cancelled

This way, it is harder to miss.
This commit is contained in:
Vincent Bernat
2025-10-28 10:44:33 +01:00
parent 00264ed226
commit 98a4830535

View File

@@ -15,13 +15,20 @@ identified with a specific icon:
This release brings a performance improvement on Linux by using per-packet This release brings a performance improvement on Linux by using per-packet
load-balancing for incoming flows using eBPF. Previously, exporters were tied to load-balancing for incoming flows using eBPF. Previously, exporters were tied to
one worker, triggering packet loss despite many workers available. This requires one worker, triggering packet loss despite many workers available. This requires
Linux 5.8+ (support of `CAP_BPF`). For older kernels, have a look at Linux 5.8+ (support of `CAP_BPF`). For older kernels, add this to your
`docker/docker-compose-local.yaml`. `docker/docker-compose-local.yaml`:
```yaml
services:
akvorado-inlet:
cap_add: !override
- SYS_ADMIN # BPF capability is supported only from Linux 5.8
```
- 🩹 *inlet*: fix `akvorado_inlet_flow_input_udp_in_dropped_packets_total` metric
- 🩹 *console*: fix completion tooltip being wrapped with Firefox
- 💥 *config*: stop shipping demo exporter configurations from the orchestrator - 💥 *config*: stop shipping demo exporter configurations from the orchestrator
- 💥 *inlet*: load-balance incoming UDP packets to all workers using eBPF on Linux - 💥 *inlet*: load-balance incoming UDP packets to all workers using eBPF on Linux
- 🩹 *inlet*: fix `akvorado_inlet_flow_input_udp_in_dropped_packets_total` metric
- 🩹 *console*: fix completion tooltip being wrapped with Firefox
- 🌱 *outlet*: be more aggressive when increasing the number of workers - 🌱 *outlet*: be more aggressive when increasing the number of workers
- 🌱 *outlet*: cap the number of workers to the number of Kafka partitions - 🌱 *outlet*: cap the number of workers to the number of Kafka partitions
- 🌱 *console*: add `auth``logout-url` and `auth``avatar-url` to configure - 🌱 *console*: add `auth``logout-url` and `auth``avatar-url` to configure