catt icon indicating copy to clipboard operation
catt copied to clipboard

CATT causing OOM issue

Open andrew-stein-sp opened this issue 9 months ago • 2 comments

log snippet attached showing a huge number of concurrent CATT processes running. This resulted in the HA container crashing because it ran out of memory. This is running on dedicated hardware - Intel n100 with 16GB of RAM.

I'm not sure where in the logs to see why these are being created though. host-log.log

andrew-stein-sp avatar Apr 08 '25 15:04 andrew-stein-sp

In the meantime you can use this:

netbird status --json | jq '.peers.details[] | select(.connectionType == "P2P")'

Silex avatar Jun 06 '25 08:06 Silex

@Silex awesome - thank you very much! netbird status --json | jq -r '.peers.details[] | select(.connectionType == "P2P") | [.fqdn, .netbirdIp, .status, .connectionType] | @tsv' | column -t

or

netbird status --json | jq -r '.peers.details[] | select(.connectionType == "Relayed") | [.fqdn, .netbirdIp, .status, .connectionType] | @tsv' | column -t

Image

florian-obradovic avatar Jun 06 '25 08:06 florian-obradovic