monitoring namespace:
Loki without Alloy stores nothing; Alloy without Loki has nowhere to push. The wizard installs them as separate steps so each has its own release state.
Configuration that matters
The status reports the desired configuration each release runs with:- Loki — storage class and size (e.g.
ceph-block,50Gi) and the retention period (e.g.168h). Retention is the trade-off dial: longer history, more PVC. - Alloy — the Loki endpoint it pushes to (the in-cluster service,
http://loki.monitoring.svc.cluster.local:3100) and the excluded namespaces whose logs are not collected (e.g.flux-system,cilium-secrets,tetragon-system) — high-churn system namespaces that would otherwise dominate the store.
hr-status vs status
Both components expose two reads, and the distinction is the useful part:
The split mirrors the three-layer triage:
hr-status answers “did the chart land”, status answers “what is it configured to do” — and neither proves logs are actually arriving. For that, query a pod’s logs and check the source (below).
The tenant log read layer
Pod logs in the resource browser — for the supervisor and for guest clusters — are served Loki-first with live fallback:1
Loki first
The backend queries the supervisor’s Loki over the internal service path with a selector on cluster, namespace, and pod — returning up to 72 hours of history, including logs from pods that have since restarted or been rescheduled.
2
Live fallback
When Loki has nothing for the pod — shipping is off, or ingestion has not caught up — the request falls back to the live kubelet log read. You never get less than the plain Kubernetes path would give you.
3
Source badge
The logs view labels each transcript with its source (
Loki · history or live), so a silent fallback is visible. A pod that should have history but shows live is your cue to check the shipping path.What commonly breaks
Other recurring failure modes, in triage order:- Alloy not installed — logs views quietly serve
liveonly. The status panel shows the release absent. - Collector pods down — the Pod Security case above, or a node-level issue; either way the release is green and the DaemonSet is not.
- Guest push path broken — the guest’s collectors are healthy but the Loki route is missing or unreachable from the guest network; supervisor logs work, guest history does not.
- Retention expired — history exists but is shorter than expected; check the configured retention period before suspecting ingestion.
Permissions
Related
Platform health overview
Release state vs runtime state — the model this page applies.
Monitoring
The metrics half of the observability stack, same namespace.
Flow telemetry
Network flow data — a separate pipeline with its own freshness signal.
Gateways & Routes
The shared Gateway that guest log shipping depends on.