Just FYI, given the outage yesterday, y'all can guard against having your rigs completely offline while still using the specific servers you want when they're up.
I'm in the US, so the below cgminer.conf snippet splits 80% of my power between US East and West, 20% to wafflepool, and falls back to non-US Middlecoin servers if the first three are all down. You can play with the quota numbers to create whatever behavior you want (making Wafflepool a last resort, load-balancing evenly among everything, etc). It pretty much makes it set-and-forget.
"pools" : [
{
"quota" : "40;stratum+tcp://useast.middlecoin.com:3333",
"user" : "...",
"pass" : "x"
},
{
"quota" : "40;stratum+tcp://uswest.middlecoin.com:3333",
"user" : "...",
"pass" : "x"
},
{
"quota" : "20;stratum+tcp://wafflepool.com:3333",
"user" : "...",
"pass" : "x"
},
{
"quota" : "0;stratum+tcp://eu.middlecoin.com:3333",
"user" : "...",
"pass" : "x"
},
{
"quota" : "0;stratum+tcp://amsterdam.middlecoin.com:3333",
"user" : "...",
"pass" : "x"
},
{
"quota" : "0;stratum+tcp://asia.middlecoin.com:3333",
"user" : "...",
"pass" : "x",
}
],
"load-balance" : true,
"failover-only" : true,