- Which algorithms does it simulate?
- Round-robin, weighted round-robin, least-connections, IP hash, random, and consistent hashing. Each shows request distribution across simulated server nodes with configurable weights and capacities.
- What's the difference between L4 and L7 load balancing?
- L4 (transport layer) routes based on IP/port — fast but can't inspect content. L7 (application layer) routes based on HTTP headers, URL, or cookies — slower but enables content-based routing.
- Does it model health checks?
- Yes — mark individual servers as unhealthy mid-simulation to see how each algorithm redistributes traffic. The simulator shows both active connections and in-flight requests during failover.