Prototyping a simple load balancer in Go, with a metrics aggregator and the flexibility to use various load balancing algorithms. Currently, it supports only the Round Robin algorithm.
- The algorithm selects an instance in a circular manner.
- After the first instance is selected, the second instance is chosen, and so on. If the last selected instance was the first one, the algorithm will select the second one next.