cluster live feed connecting…

Live view of a Kubernetes cluster — the latest value per subject, updating in real time over a WebSocket. Two feeds: periodic cluster state, and per-URL visit counts from the helloworld app.

How the data reaches this page:

Source
A clusterinfo deployment polls the Kubernetes API every 0.5 s (one random cluster aspect per tick — nodes, pods, namespaces, deployments, services, capacity, Cilium state, and more); the helloworld app emits one event per URL it serves.
Ingest
Both publish to the in-cluster Kafka brokers (Strimzi/KRaft) — topics cluster-info and url-visits.
Serve
The wsfeed service consumes both topics, keeps the current value per subject (per-URL counts aggregated), and streams updates to your browser over a WebSocket at /ws.
Sort:
Latest value per subject, updating live.
Data