Troubleshooting¶
Quick fixes for the issues teams hit most often.
No alerts appearing¶
You triggered something (like a shell in a container) but nothing shows on the dashboard.
- Check Falco is running on every node:
There should be one
RunningFalco pod per node. - Check Falcosidekick can reach the collector. If events aren't arriving, this link is the usual culprit. Look at the Falcosidekick logs:
- Check the collector is receiving:
- Confirm your action landed in a watched container — try exec-ing into a different, definitely-running pod.
Falcosidekick can't reach the collector¶
If Falco fires but the collector never logs the event, the Falcosidekick → collector wiring is likely off. This is almost always a release-name / Service-name mismatch: Falcosidekick's output URL points at the fixed Service name kubesentry-collector, which only exists when you install with the release name kubesentry (or set fullnameOverride=kubesentry). If you installed under a different release name, reinstall as kubesentry:
helm uninstall <your-release> -n kubesentry
helm install kubesentry kubesentry/kubesentry -n kubesentry --create-namespace
Falco pods crashing or CrashLoopBackOff¶
Usually a driver/kernel issue.
- Confirm your nodes' kernels support the
modern_ebpfdriver (modern kernels do). - Check the Falco pod logs for the specific driver error:
- On unusual or older kernels you may need to adjust the Falco driver settings via the
falco.drivervalues. See the Falco driver docs.
exec format error when pods pull the image¶
The node's architecture doesn't match the image. The published collector image is multi-arch (amd64 + arm64), so a clean pull should just work. If you see this, confirm you're pulling ghcr.io/kubesentry/collector (the public multi-arch image) and not a stale single-arch build.
Trial banner won't go away after activating¶
- Confirm the upgrade actually applied the license value:
- Make sure the token was copied whole — no line breaks or trailing spaces.
- Reload the dashboard (hard refresh). The collector re-reads the license on the rolled pod.
- Check the collector logs for a license validation message; a malformed or expired token logs a validation failure and falls back to trial.
Dashboard is empty but pods are healthy¶
- Verify you're port-forwarding the right Service and port (
svc/kubesentry-collectoron8080) and opening/dashboard. - Give it a moment after install — the feed only populates once an event fires. Trigger a test detection (see Quickstart).
Alert history disappeared after reinstall¶
History lives on a PersistentVolume. If it's gone, the PVC was likely deleted. Confirm collector.persistence.enabled: true and that your StorageClass retains volumes. See Storage.
Still stuck?¶
Grab the collector logs and your (secret-free) values.yaml, and reach out via support on the KubeSentry site.