On nginx docs there is an example of split_clients directive:
split_clients "${remote_addr}AAA" $variant {
0.5% .one;
2.0% .two;
* "";
}
In general I understand how this directive works, but I cannot understand what the purpose of AAA suffix is.
Please help