Page MenuHomePhabricator

pybal DNS lookup issues causing outage risks
Closed, ResolvedPublic

Description

I've been trying to track down the source of intermittent PyBal failures with the IdleConnectionMonitor healthchecks. The backend servers do not seem to be at fault here. These happen often for ~1-3 random idle monitors every few minutes on the eqiad high-traffic1 LVS (haven't looked much elsewhere, but on a quick look esams doesn't seem to have the same problem...). Usually they quickly come back a few seconds later and repool. Once in a blue moon, whatever is causing this gets into some catastrophic coincedence scenario and tries to depool multiple servers from one pool all at once, which will then temporarily hit the depool_threshold, etc. All in all, it's not good.

This very-filtered log snippet captures a single minute in time, for just textsvc_80/cp1065, when one of these events happened for that (plus another around the same timeframe, unrelated):

2015-06-25 20:03:05.751902 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/up/pooled): Connection established.
2015-06-25 20:03:11.954722 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/up/pooled): Connection established.
2015-06-25 20:03:18.559001 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/up/pooled): Connection established.
2015-06-25 20:03:24.763018 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/up/pooled): Connection established.
2015-06-25 20:03:34.167234 [textsvc_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-25 20:03:34.167455 ['-d -t 10.2.2.25:80 -r 10.64.0.102']
2015-06-25 20:03:34.174287 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-25 20:03:36.533444 [textsvc_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-25 20:03:36.533681 ['-a -t 10.2.2.25:80 -r 10.64.0.102 -w 1']
2015-06-25 20:03:36.541297 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/up/pooled): Connection established.
2015-06-25 20:03:42.574250 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/up/pooled): Connection established.
2015-06-25 20:03:48.980416 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/up/pooled): Connection established.
2015-06-25 20:03:55.182072 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/up/pooled): Connection established.

I've had many wild theories over the past day while staring at related aspects of this. The only one that has held up well is that this is somehow related to pybal making runtime DNS queries. I can't say which DNS queries for what - it may be that delays in other unrelated parts of pybal or unrelated healthchecks are just slowing down the eventloop enough to cause random harm to unrelated IdleConnection stuff.

What I have been able to very reliably reproduce is the following test on lvs100[14] (high-traffic1 in eqiad):

  • Under it's normal resolv.conf settings (which is eqiad then codfw recdns LVS addresses), the intermittent failures are there
  • Editing resolv.conf to just the eqiad recdns LVS, still failures are there
  • Editing resolv.conf to just the codfw recdns LVS, no failure (!)
  • Editing resolv.conf to the eqiad recursors directly (chromium, hydrogen), no failure
  • Editing resolv.conf to the eqiad recursors directly (hydrogen, chromium), seen 1-2 fails here, but way better?

I've re-run those scenarios countless times and it's very consistent. Also, it doesn't require a pybal restart to take effect, implying this is libc-level resolver code that's making the difference I think. Hydrogen seems to be at fault here somehow, and somehow more-impactful when via-LVS? Honestly, there's probably too many other variables over the test period to know. What is consistent is that ditching eqiad-LVS-recdns from the list helps a lot, usually completely.

One layer of bug here is that pybal is apparently very sensitive to whatever this DNS hiccup is. We could maybe address that with future code revs. The other layer is finding and solving the hiccup with pdns_recursor service on hydrogen (I didn't try to restart it yet, because I want to be able to dig on this further later).

We could also explore making DNS resolution more reliable than the way glibc does it, for all of the fleet. glibc is conversative: it tries the first server on the list, times out for 3 seconds, then tries the next, and so-on. Given random machine/service hiccups, unreliable UDP, random packet loss, etc, that's not a great strategy, with or without LVS helping us.

Given we're in a closed, controlled environment and only harming our own DNS caches, I think we'd be better served by a more aggressive and redundant strategy where we don't use LVS, specify the recdns servers in resolv.conf directly, and our resolver fires off parallel queries to them with aggressive timeouts and accepts the first legit response it gets. I think the reason glibc doesn't implement an option for this is to protect all the random caches in the world from excess load.

In related IRC discussion last night, @MoritzMuehlenhoff pointed out an existing NSS module for similar stuff here: https://github.com/grobian/dnspq . That code is a little dated, and only supports A-records (then falls back to glibc for anything else - we'd need at least AAAA added to it). But it's very short and simple. We could perhaps audit it and update it a bit to be sure it can do exactly what we want and need in a github fork (and pullreq the changes back in case the author wants it too) and experiment with packaging and using this on the fleet.

In the meantime, I'd like to propose a couple of fixes to clean up the LVS fail-rate in eqiad regardless of the above:

  1. Reduce the resolv.conf timeout from 3s to 1s, so that it takes less time to fail down the list.
  2. Switch all the LVSes to using local recursors directly rather than via-LVS, as that seems more stable and direct. The downside there is that if the first recdns machine on the list fails, the fallout might be worse than the current status quo with an LVS depool. The LVSes that actually serve recdns already set up direct, just not the others.

Event Timeline

BBlack raised the priority of this task from to Medium.
BBlack updated the task description. (Show Details)
BBlack added projects: acl*sre-team, Traffic, PyBal, DNS.
BBlack added subscribers: BBlack, faidon, mark and 3 others.

Probably interrelated with: T83662

What I'm testing on lvs1004 today is basically:

  1. Switching to the lvs100[25]-style nameservers list (that is: the 2x local recdns machines directly + codfw LVS-recdns)
  2. Switching to options timeout:1 attempts:3. As compared to the current timeout of 3 and default attempts of 2, this means we'll fail over to trying other servers much faster, but we'll retry the whole list one extra time before giving up completely. As a side effect, the total time to giving up after all timeouts and retries reduces from num_servers * 6 to num_servers * 3 seconds.

So far, I haven't logged any intermittent inexplicable failures with this on lvs1004, but I will keep looking a bit longer before proposing patches.

Change 221303 had a related patch set uploaded (by BBlack):
Use overridden direct DNS for all LVS

https://gerrit.wikimedia.org/r/221303

Change 221304 had a related patch set uploaded (by BBlack):
resolv.conf: lower timeout from 3s to 1s, attempts

https://gerrit.wikimedia.org/r/221304

Testing on lvs1004 (with comparison against logs on lvs1001) is still looking great.

The above two patches would spread equivalent nameserver overrides as tested on lvs1004 to all LVS machines, and would make the timeout/attempts option changes globally for all resolv.conf (as I think they're an improvement globally). It's tempting to merge these now ahead of the weekend, but I'd rather not take the risk. Perhaps ASAP early next week we can get some review on this and push it around if it's ok.

Also, just for reference re testing lvs100[14] differential (lvs1004 has proposed changes, lvs1001 has current config): I've been running this same tail|grep setup on both, and during the time that lvs1001 has output all of the below, lvs1004 has output zero lines. It did have similar patterns up until shortly after I edited its resolv.conf:

root@lvs1001:~# tail -F /var/log/pybal.log | egrep --line-buffered -v 'estab|success'
2015-06-26 17:48:51.380666 [bitslb_80] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:48:51.381007 ['-d -t 208.80.154.234:80 -r 10.64.32.133']
2015-06-26 17:48:51.389201 [bitslb_80 IdleConnection] cp1056.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:48:54.643722 [bitslb_80] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:48:54.643957 ['-a -t 208.80.154.234:80 -r 10.64.32.133 -w 1']
2015-06-26 17:52:06.343258 [loginlb6_80] Monitoring instance IdleConnection reports server cp1066.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:52:06.343596 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:103']
2015-06-26 17:52:06.353062 [loginlb6_80 IdleConnection] cp1066.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:52:09.065052 [loginlb6_80] Server cp1066.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:52:09.065316 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:103 -w 1']
2015-06-26 17:53:11.870061 [textlb_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:53:11.870511 ['-d -t 208.80.154.224:80 -r 10.64.32.105']
2015-06-26 17:53:11.878717 [textlb_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:53:14.734248 [textlb_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:53:14.734543 ['-a -t 208.80.154.224:80 -r 10.64.32.105 -w 1']
2015-06-26 17:54:17.389987 [bitslb_80] Monitoring instance IdleConnection reports server cp1069.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:54:17.390310 ['-d -t 208.80.154.234:80 -r 10.64.0.106']
2015-06-26 17:54:17.398166 [bitslb_80 IdleConnection] cp1069.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:54:20.408253 [bitslb_80] Server cp1069.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:54:20.408691 ['-a -t 208.80.154.234:80 -r 10.64.0.106 -w 1']
2015-06-26 17:55:22.947923 [loginlb_80] Monitoring instance IdleConnection reports server cp1052.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:55:22.948337 ['-d -t 208.80.154.233:80 -r 10.64.32.104']
2015-06-26 17:55:22.957362 [loginlb_80 IdleConnection] cp1052.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:55:22.959062 [bitssvc_80] Monitoring instance IdleConnection reports server cp1069.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:55:22.959425 ['-d -t 10.2.2.23:80 -r 10.64.0.106']
2015-06-26 17:55:22.966755 [bitssvc_80 IdleConnection] cp1069.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:55:25.656458 [loginlb_80] Server cp1052.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:55:25.656807 ['-a -t 208.80.154.233:80 -r 10.64.32.104 -w 1']
2015-06-26 17:55:25.817568 [bitssvc_80] Server cp1069.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:55:25.817839 ['-a -t 10.2.2.23:80 -r 10.64.0.106 -w 1']
2015-06-26 17:56:28.456098 [textlb_80] Monitoring instance IdleConnection reports server cp1055.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:56:28.456386 ['-d -t 208.80.154.224:80 -r 10.64.32.107']
2015-06-26 17:56:28.463499 [textlb_80 IdleConnection] cp1055.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:56:30.708035 [textlb_80] Server cp1055.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:56:30.708278 ['-a -t 208.80.154.224:80 -r 10.64.32.107 -w 1']
2015-06-26 17:57:34.029713 [textsvc_80] Monitoring instance IdleConnection reports server cp1068.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:57:34.030028 ['-d -t 10.2.2.25:80 -r 10.64.0.105']
2015-06-26 17:57:34.038482 [textsvc_80 IdleConnection] cp1068.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:57:36.619024 [textsvc_80] Server cp1068.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:57:36.619243 ['-a -t 10.2.2.25:80 -r 10.64.0.105 -w 1']
2015-06-26 17:58:39.534751 [textlb_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:58:39.535261 ['-d -t 208.80.154.224:80 -r 10.64.0.102']
2015-06-26 17:58:39.544586 [textlb_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:58:42.675962 [textlb_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:58:42.676274 ['-a -t 208.80.154.224:80 -r 10.64.0.102 -w 1']
2015-06-26 17:59:45.069140 [loginlb6_80] Monitoring instance IdleConnection reports server cp1054.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:59:45.069360 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:103:10:64:32:106']
2015-06-26 17:59:45.078559 [loginlb6_80 IdleConnection] cp1054.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:59:45.112120 [textlb6_80] Monitoring instance IdleConnection reports server cp1052.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 17:59:45.112512 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:104']
2015-06-26 17:59:45.119987 [textlb6_80 IdleConnection] cp1052.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 17:59:47.485281 [loginlb6_80] Server cp1054.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:59:47.485573 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:103:10:64:32:106 -w 1']
2015-06-26 17:59:47.742473 [textlb6_80] Server cp1052.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 17:59:47.742707 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:104 -w 1']
2015-06-26 18:00:50.618730 [loginlb_80] Monitoring instance IdleConnection reports server cp1055.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:00:50.619044 ['-d -t 208.80.154.233:80 -r 10.64.32.107']
2015-06-26 18:00:50.627128 [loginlb_80 IdleConnection] cp1055.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:00:53.351561 [loginlb_80] Server cp1055.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:00:53.351793 ['-a -t 208.80.154.233:80 -r 10.64.32.107 -w 1']
2015-06-26 18:03:01.685307 [bitssvc_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:03:01.685681 ['-d -t 10.2.2.23:80 -r 10.64.0.107']
2015-06-26 18:03:01.694683 [bitssvc_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:03:01.696687 [bitslb_80] Monitoring instance IdleConnection reports server cp1057.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:03:01.697061 ['-d -t 208.80.154.234:80 -r 10.64.32.134']
2015-06-26 18:03:01.705755 [bitslb_80 IdleConnection] cp1057.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:03:03.932412 [bitssvc_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:03:03.932766 ['-a -t 10.2.2.23:80 -r 10.64.0.107 -w 1']
2015-06-26 18:03:04.554580 [bitslb_80] Server cp1057.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:03:04.554819 ['-a -t 208.80.154.234:80 -r 10.64.32.134 -w 1']
2015-06-26 18:05:12.777673 [textsvc_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:05:12.777942 ['-d -t 10.2.2.25:80 -r 10.64.0.102']
2015-06-26 18:05:12.784887 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:05:12.786354 [loginlb6_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:05:12.786715 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:102']
2015-06-26 18:05:12.794255 [loginlb6_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:05:14.784506 [textsvc_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:05:14.784729 ['-a -t 10.2.2.25:80 -r 10.64.0.102 -w 1']
2015-06-26 18:05:15.472125 [loginlb6_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:05:15.472334 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:102 -w 1']
2015-06-26 18:07:23.831158 [loginlb6_443] Monitoring instance IdleConnection reports server cp1055.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:07:23.832073 ['-d -t [2620:0:861:ed1a::1:9]:443 -r 2620:0:861:103:10:64:32:107']
2015-06-26 18:07:23.840136 [loginlb6_443 IdleConnection] cp1055.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 18:07:23.844960 [loginlb6_443] Monitoring instance IdleConnection reports server cp1054.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:07:23.845322 ['-d -t [2620:0:861:ed1a::1:9]:443 -r 2620:0:861:103:10:64:32:106']
2015-06-26 18:07:23.852268 [loginlb6_443 IdleConnection] cp1054.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 18:07:26.256146 [loginlb6_443] Server cp1055.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:07:26.256562 ['-a -t [2620:0:861:ed1a::1:9]:443 -r 2620:0:861:103:10:64:32:107 -w 1']
2015-06-26 18:07:26.365633 [loginlb6_443] Server cp1054.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:07:26.365949 ['-a -t [2620:0:861:ed1a::1:9]:443 -r 2620:0:861:103:10:64:32:106 -w 1']
2015-06-26 18:08:29.399882 [loginlb_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:08:29.400192 ['-d -t 208.80.154.233:80 -r 10.64.0.102']
2015-06-26 18:08:29.407682 [loginlb_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:08:32.100809 [loginlb_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:08:32.101097 ['-a -t 208.80.154.233:80 -r 10.64.0.102 -w 1']
2015-06-26 18:10:40.462340 [mobilelb_80] Monitoring instance IdleConnection reports server cp1047.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:10:40.462544 ['-d -t 208.80.154.236:80 -r 10.64.32.99']
2015-06-26 18:10:40.470402 [mobilelb_80 IdleConnection] cp1047.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:10:43.059320 [mobilelb_80] Server cp1047.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:10:43.059538 ['-a -t 208.80.154.236:80 -r 10.64.32.99 -w 1']
2015-06-26 18:12:53.156948 [mobilelb_80] Monitoring instance IdleConnection reports server cp1047.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:12:53.157557 ['-d -t 208.80.154.236:80 -r 10.64.32.99']
2015-06-26 18:12:53.166821 [mobilelb_80 IdleConnection] cp1047.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:12:55.664095 [mobilelb_80] Server cp1047.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:12:55.664350 ['-a -t 208.80.154.236:80 -r 10.64.32.99 -w 1']
2015-06-26 18:18:19.222553 [bitslb6_80] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:18:19.222906 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:133']
2015-06-26 18:18:19.230770 [bitslb6_80 IdleConnection] cp1056.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:18:22.064530 [bitslb6_80] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:18:22.064776 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:133 -w 1']
2015-06-26 18:19:05.949025 [bitslb_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:19:05.949320 ['-d -t 208.80.154.234:80 -r 10.64.0.107']
2015-06-26 18:19:05.958786 [bitslb_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:19:08.447911 [bitslb_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:19:08.448117 ['-a -t 208.80.154.234:80 -r 10.64.0.107 -w 1']
2015-06-26 18:19:24.715283 [textlb6_80] Monitoring instance IdleConnection reports server cp1066.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:19:24.715843 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:103']
2015-06-26 18:19:24.723326 [textlb6_80 IdleConnection] cp1066.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:19:27.328196 [textlb6_80] Server cp1066.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:19:27.328511 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:103 -w 1']
2015-06-26 18:20:30.244239 [textsvc_80] Monitoring instance IdleConnection reports server cp1054.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:20:30.244603 ['-d -t 10.2.2.25:80 -r 10.64.32.106']
2015-06-26 18:20:30.253289 [textsvc_80 IdleConnection] cp1054.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:20:32.694501 [textsvc_80] Server cp1054.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:20:32.694738 ['-a -t 10.2.2.25:80 -r 10.64.32.106 -w 1']
2015-06-26 18:21:35.787910 [textlb_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:21:35.788118 ['-d -t 208.80.154.224:80 -r 10.64.0.102']
2015-06-26 18:21:35.795668 [textlb_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:21:38.166036 [textlb_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:21:38.166271 ['-a -t 208.80.154.224:80 -r 10.64.0.102 -w 1']
2015-06-26 18:22:41.346691 [mobilelb6_80] Monitoring instance IdleConnection reports server cp1060.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:22:41.347051 ['-d -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:101:10:64:0:97']
2015-06-26 18:22:41.356235 [mobilelb6_80 IdleConnection] cp1060.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:22:41.359129 [bitslb_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:22:41.359418 ['-d -t 208.80.154.234:80 -r 10.64.0.107']
2015-06-26 18:22:41.368037 [bitslb_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:22:43.324043 [bitslb_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:22:43.324468 ['-a -t 208.80.154.234:80 -r 10.64.0.107 -w 1']
2015-06-26 18:22:44.341676 [mobilelb6_80] Server cp1060.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:22:44.341991 ['-a -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:101:10:64:0:97 -w 1']
2015-06-26 18:23:46.873459 [bitslb6_443] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:23:46.873652 ['-d -t [2620:0:861:ed1a::1:a]:443 -r 2620:0:861:103:10:64:32:133']
2015-06-26 18:23:46.881788 [bitslb6_443 IdleConnection] cp1056.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 18:23:49.852544 [bitslb6_443] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:23:49.852992 ['-a -t [2620:0:861:ed1a::1:a]:443 -r 2620:0:861:103:10:64:32:133 -w 1']
2015-06-26 18:25:57.953770 [bitssvc_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:25:57.954100 ['-d -t 10.2.2.23:80 -r 10.64.0.107']
2015-06-26 18:25:57.962870 [bitssvc_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:26:01.286538 [bitssvc_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:26:01.286717 ['-a -t 10.2.2.23:80 -r 10.64.0.107 -w 1']
2015-06-26 18:32:31.174796 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1059.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:32:31.175264 ['-d -t 10.2.2.26:80 -r 10.64.0.96']
2015-06-26 18:32:31.182316 [mobilesvc_80 IdleConnection] cp1059.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:32:33.674594 [mobilesvc_80] Server cp1059.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:32:33.674901 ['-a -t 10.2.2.26:80 -r 10.64.0.96 -w 1']
2015-06-26 18:34:50.709963 [loginlb_80] Monitoring instance IdleConnection reports server cp1052.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:34:50.710341 ['-d -t 208.80.154.233:80 -r 10.64.32.104']
2015-06-26 18:34:50.719875 [loginlb_80 IdleConnection] cp1052.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:34:53.065248 [loginlb_80] Server cp1052.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:34:53.065467 ['-a -t 208.80.154.233:80 -r 10.64.32.104 -w 1']
2015-06-26 18:34:59.721351 [loginlb_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:34:59.721614 ['-d -t 208.80.154.233:80 -r 10.64.32.105']
2015-06-26 18:34:59.730306 [loginlb_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:35:02.581525 [loginlb_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:35:02.581797 ['-a -t 208.80.154.233:80 -r 10.64.32.105 -w 1']
2015-06-26 18:36:53.290267 [textlb6_80] Monitoring instance IdleConnection reports server cp1066.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:36:53.290572 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:103']
2015-06-26 18:36:53.299165 [textlb6_80 IdleConnection] cp1066.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:36:53.301006 [textsvc_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:36:53.301281 ['-d -t 10.2.2.25:80 -r 10.64.0.104']
2015-06-26 18:36:53.309640 [textsvc_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:36:55.817173 [textlb6_80] Server cp1066.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:36:55.817525 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:103 -w 1']
2015-06-26 18:36:56.400882 [textsvc_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:36:56.401215 ['-a -t 10.2.2.25:80 -r 10.64.0.104 -w 1']
2015-06-26 18:39:25.585644 [textsvc_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:39:25.585953 ['-d -t 10.2.2.25:80 -r 10.64.32.105']
2015-06-26 18:39:25.592777 [textsvc_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:39:28.071871 [textsvc_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:39:28.072041 ['-a -t 10.2.2.25:80 -r 10.64.32.105 -w 1']
2015-06-26 18:44:20.099985 Connection received from 204.93.154.212
2015-06-26 18:44:21.333223 Connection received from 204.93.154.212
2015-06-26 18:44:45.176921 [bitslb6_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:44:45.177220 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:107']
2015-06-26 18:44:45.185213 [bitslb6_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:44:47.915768 [bitslb6_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:44:47.916060 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:107 -w 1']
2015-06-26 18:45:08.019357 Connection received from 204.93.154.212
2015-06-26 18:45:57.560806 [mobilelb6_80] Monitoring instance IdleConnection reports server cp1060.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:45:57.561181 ['-d -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:101:10:64:0:97']
2015-06-26 18:45:57.570557 [mobilelb6_80 IdleConnection] cp1060.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:46:00.463699 [mobilelb6_80] Server cp1060.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:46:00.463935 ['-a -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:101:10:64:0:97 -w 1']
2015-06-26 18:47:05.872149 [textlb6_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:47:05.872476 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:104']
2015-06-26 18:47:05.882031 [textlb6_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:47:07.946440 [textlb6_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:47:07.946748 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:104 -w 1']
2015-06-26 18:48:54.224222 [mobilelb_80] Monitoring instance IdleConnection reports server cp1046.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:48:54.224571 ['-d -t 208.80.154.236:80 -r 10.64.32.98']
2015-06-26 18:48:54.233457 [mobilelb_80 IdleConnection] cp1046.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:48:56.912139 [mobilelb_80] Server cp1046.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:48:56.912446 ['-a -t 208.80.154.236:80 -r 10.64.32.98 -w 1']
2015-06-26 18:51:05.251672 [bitslb6_80] Monitoring instance IdleConnection reports server cp1057.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:51:05.252086 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:134']
2015-06-26 18:51:05.259904 [bitslb6_80 IdleConnection] cp1057.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:51:08.215908 [bitslb6_80] Server cp1057.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:51:08.216174 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:134 -w 1']
2015-06-26 18:52:12.438122 [bitslb_80] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:52:12.438349 ['-d -t 208.80.154.234:80 -r 10.64.32.133']
2015-06-26 18:52:12.445355 [bitslb_80 IdleConnection] cp1056.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:52:14.534314 [bitslb_80] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:52:14.534906 ['-a -t 208.80.154.234:80 -r 10.64.32.133 -w 1']
2015-06-26 18:53:16.367182 [textsvc_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:53:16.367487 ['-d -t 10.2.2.25:80 -r 10.64.0.102']
2015-06-26 18:53:16.376453 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:53:18.009781 [textsvc_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:53:18.010052 ['-d -t 10.2.2.25:80 -r 10.64.32.105']
2015-06-26 18:53:18.017877 [textsvc_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:53:19.441394 [textsvc_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:53:19.441669 ['-a -t 10.2.2.25:80 -r 10.64.0.102 -w 1']
2015-06-26 18:53:20.494311 [textsvc_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:53:20.494505 ['-a -t 10.2.2.25:80 -r 10.64.32.105 -w 1']
2015-06-26 18:54:21.894741 [bitslb_80] Monitoring instance IdleConnection reports server cp1069.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:54:21.895110 ['-d -t 208.80.154.234:80 -r 10.64.0.106']
2015-06-26 18:54:21.903432 [bitslb_80 IdleConnection] cp1069.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:54:23.813364 [bitslb_80] Server cp1069.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:54:23.813587 ['-a -t 208.80.154.234:80 -r 10.64.0.106 -w 1']
2015-06-26 18:55:29.054055 [loginlb_80] Monitoring instance IdleConnection reports server cp1055.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:55:29.054522 ['-d -t 208.80.154.233:80 -r 10.64.32.107']
2015-06-26 18:55:29.062996 [loginlb_80 IdleConnection] cp1055.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:55:31.787220 [loginlb_80] Server cp1055.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:55:31.787435 ['-a -t 208.80.154.233:80 -r 10.64.32.107 -w 1']
2015-06-26 18:56:32.982748 [bitslb6_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:56:32.983007 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:107']
2015-06-26 18:56:32.992604 [bitslb6_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:56:35.599862 [bitslb6_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:56:35.600169 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:107 -w 1']
2015-06-26 18:59:25.197617 [textlb_80] Monitoring instance IdleConnection reports server cp1054.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:59:25.198003 ['-d -t 208.80.154.224:80 -r 10.64.32.106']
2015-06-26 18:59:25.205516 [textlb_80 IdleConnection] cp1054.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:59:27.612582 [textlb_80] Server cp1054.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:59:27.612806 ['-a -t 208.80.154.224:80 -r 10.64.32.106 -w 1']
2015-06-26 18:59:49.540027 [textlb6_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 18:59:49.540339 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:104']
2015-06-26 18:59:49.547937 [textlb6_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 18:59:52.660650 [textlb6_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 18:59:52.660850 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:104 -w 1']
2015-06-26 19:03:06.171665 [bitslb6_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:03:06.172230 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:107']
2015-06-26 19:03:06.180909 [bitslb6_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:03:09.068994 [bitslb6_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:03:09.069212 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:107 -w 1']
2015-06-26 19:05:17.247319 [loginlb_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:05:17.247761 ['-d -t 208.80.154.233:80 -r 10.64.32.105']
2015-06-26 19:05:17.255907 [loginlb_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:05:20.020015 [loginlb_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:05:20.020334 ['-a -t 208.80.154.233:80 -r 10.64.32.105 -w 1']
2015-06-26 19:06:22.796158 [mobilelb_80] Monitoring instance IdleConnection reports server cp1059.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:06:22.796483 ['-d -t 208.80.154.236:80 -r 10.64.0.96']
2015-06-26 19:06:22.805243 [mobilelb_80 IdleConnection] cp1059.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:06:25.161466 [mobilelb_80] Server cp1059.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:06:25.161687 ['-a -t 208.80.154.236:80 -r 10.64.0.96 -w 1']
2015-06-26 19:08:33.869173 [textsvc_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:08:33.869529 ['-d -t 10.2.2.25:80 -r 10.64.32.105']
2015-06-26 19:08:33.876824 [textsvc_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:08:36.340757 [textsvc_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:08:36.341118 ['-a -t 10.2.2.25:80 -r 10.64.32.105 -w 1']
2015-06-26 19:10:44.938137 [mobilelb_443] Monitoring instance IdleConnection reports server cp1059.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:10:44.938467 ['-d -t 208.80.154.236:443 -r 10.64.0.96']
2015-06-26 19:10:44.948140 [mobilelb_443 IdleConnection] cp1059.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 19:10:47.930681 [mobilelb_443] Server cp1059.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:10:47.931066 ['-a -t 208.80.154.236:443 -r 10.64.0.96 -w 1']
2015-06-26 19:11:52.130980 [bitslb_80] Monitoring instance IdleConnection reports server cp1057.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:11:52.131300 ['-d -t 208.80.154.234:80 -r 10.64.32.134']
2015-06-26 19:11:52.139166 [bitslb_80 IdleConnection] cp1057.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:11:55.125606 [bitslb_80] Server cp1057.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:11:55.125804 ['-a -t 208.80.154.234:80 -r 10.64.32.134 -w 1']
2015-06-26 19:12:56.026178 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1060.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:12:56.026520 ['-d -t 10.2.2.26:80 -r 10.64.0.97']
2015-06-26 19:12:56.033429 [mobilesvc_80 IdleConnection] cp1060.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:12:58.587145 [mobilesvc_80] Server cp1060.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:12:58.587458 ['-a -t 10.2.2.26:80 -r 10.64.0.97 -w 1']
2015-06-26 19:14:01.541210 [textsvc_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:14:01.541512 ['-d -t 10.2.2.25:80 -r 10.64.0.102']
2015-06-26 19:14:01.550514 [textsvc_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:14:04.403298 [textsvc_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:14:04.403557 ['-a -t 10.2.2.25:80 -r 10.64.0.102 -w 1']
2015-06-26 19:14:59.909087 [loginlb_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:14:59.909448 ['-d -t 208.80.154.233:80 -r 10.64.32.105']
2015-06-26 19:14:59.917540 [loginlb_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:15:03.311879 [loginlb_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:15:03.312146 ['-a -t 208.80.154.233:80 -r 10.64.32.105 -w 1']
2015-06-26 19:15:07.080965 [loginlb6_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:15:07.081243 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:102']
2015-06-26 19:15:07.089014 [loginlb6_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:15:09.797065 [loginlb6_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:15:09.797264 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:102 -w 1']
2015-06-26 19:17:34.704370 Connection received from 204.93.154.212
2015-06-26 19:17:35.911619 Connection received from 204.93.154.212
2015-06-26 19:18:22.827882 Connection received from 204.93.154.212
2015-06-26 19:20:34.759897 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1059.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:20:34.760246 ['-d -t 10.2.2.26:80 -r 10.64.0.96']
2015-06-26 19:20:34.768324 [mobilesvc_80 IdleConnection] cp1059.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:20:36.386539 [loginlb_80] Monitoring instance IdleConnection reports server cp1055.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:20:36.387219 ['-d -t 208.80.154.233:80 -r 10.64.32.107']
2015-06-26 19:20:36.395309 [loginlb_80 IdleConnection] cp1055.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:20:37.637219 [mobilesvc_80] Server cp1059.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:20:37.637766 ['-a -t 10.2.2.26:80 -r 10.64.0.96 -w 1']
2015-06-26 19:20:39.658742 [loginlb_80] Server cp1055.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:20:39.659101 ['-a -t 208.80.154.233:80 -r 10.64.32.107 -w 1']
2015-06-26 19:22:45.847817 [bitslb6_80] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:22:45.848192 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:133']
2015-06-26 19:22:45.855644 [bitslb6_80 IdleConnection] cp1056.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:22:48.725354 [bitslb6_80] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:22:48.725927 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:133 -w 1']
2015-06-26 19:23:51.364308 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1060.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:23:51.364814 ['-d -t 10.2.2.26:80 -r 10.64.0.97']
2015-06-26 19:23:51.383461 [mobilesvc_80 IdleConnection] cp1060.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:23:54.422063 [mobilesvc_80] Server cp1060.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:23:54.422243 ['-a -t 10.2.2.26:80 -r 10.64.0.97 -w 1']
2015-06-26 19:26:02.438414 [bitssvc_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:26:02.438653 ['-d -t 10.2.2.23:80 -r 10.64.0.107']
2015-06-26 19:26:02.446384 [bitssvc_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:26:04.086801 [mobilelb6_80] Monitoring instance IdleConnection reports server cp1047.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:26:04.087030 ['-d -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:103:10:64:32:99']
2015-06-26 19:26:04.093297 [mobilelb6_80 IdleConnection] cp1047.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:26:05.009878 [bitssvc_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:26:05.010049 ['-a -t 10.2.2.23:80 -r 10.64.0.107 -w 1']
2015-06-26 19:26:06.583022 [mobilelb6_80] Server cp1047.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:26:06.583393 ['-a -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:103:10:64:32:99 -w 1']
2015-06-26 19:28:13.496462 [loginlb_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:28:13.496983 ['-d -t 208.80.154.233:80 -r 10.64.0.104']
2015-06-26 19:28:13.504562 [loginlb_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:28:16.231003 [loginlb_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:28:16.231225 ['-a -t 208.80.154.233:80 -r 10.64.0.104 -w 1']
2015-06-26 19:29:20.705610 [mobilelb_80] Monitoring instance IdleConnection reports server cp1047.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:29:20.705952 ['-d -t 208.80.154.236:80 -r 10.64.32.99']
2015-06-26 19:29:20.713253 [mobilelb_80 IdleConnection] cp1047.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:29:23.861261 [mobilelb_80] Server cp1047.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:29:23.861708 ['-a -t 208.80.154.236:80 -r 10.64.32.99 -w 1']
2015-06-26 19:29:30.912402 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1047.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:29:30.912638 ['-d -t 10.2.2.26:80 -r 10.64.32.99']
2015-06-26 19:29:30.921764 [mobilesvc_80 IdleConnection] cp1047.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:29:33.327232 [mobilesvc_80] Server cp1047.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:29:33.327496 ['-a -t 10.2.2.26:80 -r 10.64.32.99 -w 1']
2015-06-26 19:41:19.922819 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1046.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:41:19.923268 ['-d -t 10.2.2.26:80 -r 10.64.32.98']
2015-06-26 19:41:19.931442 [mobilesvc_80 IdleConnection] cp1046.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:41:19.933089 [mobilelb6_80] Monitoring instance IdleConnection reports server cp1046.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:41:19.933401 ['-d -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:103:10:64:32:98']
2015-06-26 19:41:19.940187 [mobilelb6_80 IdleConnection] cp1046.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:41:22.339450 [mobilesvc_80] Server cp1046.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:41:22.339703 ['-a -t 10.2.2.26:80 -r 10.64.32.98 -w 1']
2015-06-26 19:41:22.370444 [mobilelb6_80] Server cp1046.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:41:22.370686 ['-a -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:103:10:64:32:98 -w 1']
2015-06-26 19:45:42.051954 [loginlb6_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:45:42.052344 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:103:10:64:32:105']
2015-06-26 19:45:42.061706 [loginlb6_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:45:45.240499 [loginlb6_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:45:45.240645 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:103:10:64:32:105 -w 1']
2015-06-26 19:46:47.643586 [bitslb6_80] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:46:47.643843 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:133']
2015-06-26 19:46:47.652268 [bitslb6_80 IdleConnection] cp1056.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:46:49.737926 [bitslb6_80] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:46:49.738352 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:133 -w 1']
2015-06-26 19:50:04.248816 [bitssvc_80] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:50:04.249122 ['-d -t 10.2.2.23:80 -r 10.64.32.133']
2015-06-26 19:50:04.257027 [bitssvc_80 IdleConnection] cp1056.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:50:06.785805 [bitssvc_80] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:50:06.786044 ['-a -t 10.2.2.23:80 -r 10.64.32.133 -w 1']
2015-06-26 19:53:20.842831 [loginlb_443] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:53:20.843122 ['-d -t 208.80.154.233:443 -r 10.64.0.104']
2015-06-26 19:53:20.850673 [loginlb_443 IdleConnection] cp1067.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 19:53:20.854474 [bitssvc_80] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:53:20.854795 ['-d -t 10.2.2.23:80 -r 10.64.32.133']
2015-06-26 19:53:20.861819 [bitssvc_80 IdleConnection] cp1056.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:53:23.485405 [loginlb_443] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:53:23.485595 ['-a -t 208.80.154.233:443 -r 10.64.0.104 -w 1']
2015-06-26 19:53:24.037933 [bitssvc_80] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:53:24.038208 ['-a -t 10.2.2.23:80 -r 10.64.32.133 -w 1']
2015-06-26 19:55:31.911341 [loginlb_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:55:31.911643 ['-d -t 208.80.154.233:80 -r 10.64.0.104']
2015-06-26 19:55:31.920293 [loginlb_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:55:34.809994 [loginlb_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:55:34.810264 ['-a -t 208.80.154.233:80 -r 10.64.0.104 -w 1']
2015-06-26 19:58:48.532956 [textlb_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 19:58:48.533366 ['-d -t 208.80.154.224:80 -r 10.64.0.104']
2015-06-26 19:58:48.542845 [textlb_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 19:58:50.749528 [textlb_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 19:58:50.749836 ['-a -t 208.80.154.224:80 -r 10.64.0.104 -w 1']
2015-06-26 20:01:01.248576 [loginlb_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:01:01.248990 ['-d -t 208.80.154.233:80 -r 10.64.0.102']
2015-06-26 20:01:01.258526 [loginlb_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:01:04.193253 [loginlb_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:01:04.193504 ['-a -t 208.80.154.233:80 -r 10.64.0.102 -w 1']
2015-06-26 20:04:16.220771 [loginlb6_80] Monitoring instance IdleConnection reports server cp1066.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:04:16.221149 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:103']
2015-06-26 20:04:16.228583 [loginlb6_80 IdleConnection] cp1066.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:04:19.174298 [loginlb6_80] Server cp1066.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:04:19.174584 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:103 -w 1']
2015-06-26 20:05:34.261249 [textlb6_80] Monitoring instance IdleConnection reports server cp1052.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:05:34.261609 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:104']
2015-06-26 20:05:34.269464 [textlb6_80 IdleConnection] cp1052.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:05:37.232620 [textlb6_80] Server cp1052.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:05:37.232807 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:104 -w 1']
2015-06-26 20:08:38.320091 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1046.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:08:38.320499 ['-d -t 10.2.2.26:80 -r 10.64.32.98']
2015-06-26 20:08:38.327973 [mobilesvc_80 IdleConnection] cp1046.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:08:41.434900 [mobilesvc_80] Server cp1046.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:08:41.435082 ['-a -t 10.2.2.26:80 -r 10.64.32.98 -w 1']
2015-06-26 20:08:56.764349 [mobilelb_80] Monitoring instance IdleConnection reports server cp1060.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:08:56.764605 ['-d -t 208.80.154.236:80 -r 10.64.0.97']
2015-06-26 20:08:56.771873 [mobilelb_80 IdleConnection] cp1060.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:08:59.267391 [mobilelb_80] Server cp1060.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:08:59.267649 ['-a -t 208.80.154.236:80 -r 10.64.0.97 -w 1']
2015-06-26 20:09:43.842521 [loginlb6_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:09:43.842817 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:102']
2015-06-26 20:09:43.851059 [loginlb6_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:09:46.684790 [loginlb6_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:09:46.685011 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:102 -w 1']
2015-06-26 20:13:02.133477 [textsvc_80] Monitoring instance IdleConnection reports server cp1052.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:13:02.133816 ['-d -t 10.2.2.25:80 -r 10.64.32.104']
2015-06-26 20:13:02.141703 [textsvc_80 IdleConnection] cp1052.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:13:04.875685 [textsvc_80] Server cp1052.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:13:04.875949 ['-a -t 10.2.2.25:80 -r 10.64.32.104 -w 1']
2015-06-26 20:13:05.446812 Connection received from 204.93.154.212
2015-06-26 20:13:06.703956 Connection received from 204.93.154.212
2015-06-26 20:13:53.463569 Connection received from 204.93.154.212
2015-06-26 20:14:06.010606 [textlb6_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:14:06.011015 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:105']
2015-06-26 20:14:06.019605 [textlb6_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:14:08.291522 [textlb6_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:14:08.291848 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:105 -w 1']
2015-06-26 20:16:17.087358 [loginlb6_80] Monitoring instance IdleConnection reports server cp1066.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:16:17.087735 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:103']
2015-06-26 20:16:17.096273 [loginlb6_80 IdleConnection] cp1066.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:16:19.086939 [loginlb6_80] Server cp1066.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:16:19.087166 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:103 -w 1']
2015-06-26 20:17:22.632620 [textlb6_80] Monitoring instance IdleConnection reports server cp1068.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:17:22.633010 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:105']
2015-06-26 20:17:22.640820 [textlb6_80 IdleConnection] cp1068.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:17:25.882336 [textlb6_80] Server cp1068.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:17:25.882526 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:105 -w 1']
2015-06-26 20:18:28.165203 [loginlb_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:18:28.165600 ['-d -t 208.80.154.233:80 -r 10.64.0.102']
2015-06-26 20:18:28.174209 [loginlb_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:18:30.682036 [loginlb_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:18:30.682211 ['-a -t 208.80.154.233:80 -r 10.64.0.102 -w 1']
2015-06-26 20:19:33.699376 [mobilelb_80] Monitoring instance IdleConnection reports server cp1059.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:19:33.699817 ['-d -t 208.80.154.236:80 -r 10.64.0.96']
2015-06-26 20:19:33.707680 [mobilelb_80 IdleConnection] cp1059.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:19:36.325088 [mobilelb_80] Server cp1059.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:19:36.325290 ['-a -t 208.80.154.236:80 -r 10.64.0.96 -w 1']
2015-06-26 20:20:40.859629 [textsvc_80] Monitoring instance IdleConnection reports server cp1068.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:20:40.859961 ['-d -t 10.2.2.25:80 -r 10.64.0.105']
2015-06-26 20:20:40.868151 [textsvc_80 IdleConnection] cp1068.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:20:43.388146 [textsvc_80] Server cp1068.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:20:43.388414 ['-a -t 10.2.2.25:80 -r 10.64.0.105 -w 1']
2015-06-26 20:22:50.322581 [textsvc_80] Monitoring instance IdleConnection reports server cp1054.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:22:50.322880 ['-d -t 10.2.2.25:80 -r 10.64.32.106']
2015-06-26 20:22:50.331189 [textsvc_80 IdleConnection] cp1054.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:22:51.933979 [loginlb_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:22:51.934224 ['-d -t 208.80.154.233:80 -r 10.64.0.104']
2015-06-26 20:22:51.941163 [loginlb_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:22:53.112201 [textsvc_80] Server cp1054.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:22:53.112537 ['-a -t 10.2.2.25:80 -r 10.64.32.106 -w 1']
2015-06-26 20:22:54.597326 [loginlb_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:22:54.597599 ['-a -t 208.80.154.233:80 -r 10.64.0.104 -w 1']
2015-06-26 20:23:55.806017 [bitssvc_80] Monitoring instance IdleConnection reports server cp1069.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:23:55.806265 ['-d -t 10.2.2.23:80 -r 10.64.0.106']
2015-06-26 20:23:55.812953 [bitssvc_80 IdleConnection] cp1069.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:23:58.141030 [bitssvc_80] Server cp1069.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:23:58.141344 ['-a -t 10.2.2.23:80 -r 10.64.0.106 -w 1']
2015-06-26 20:27:54.316559 [loginlb6_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:27:54.316798 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:102']
2015-06-26 20:27:54.324644 [loginlb6_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:27:57.166525 [loginlb6_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:27:57.166663 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:102 -w 1']
2015-06-26 20:39:13.352817 [textsvc_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:39:13.353071 ['-d -t 10.2.2.25:80 -r 10.64.32.105']
2015-06-26 20:39:13.360409 [textsvc_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:39:15.959931 [textsvc_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:39:15.960120 ['-a -t 10.2.2.25:80 -r 10.64.32.105 -w 1']
2015-06-26 20:40:18.878199 [textlb6_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:40:18.878716 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:104']
2015-06-26 20:40:18.886571 [textlb6_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:40:22.075723 [textlb6_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:40:22.076115 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:104 -w 1']
2015-06-26 20:42:29.960697 [loginlb6_80] Monitoring instance IdleConnection reports server cp1054.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:42:29.961158 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:103:10:64:32:106']
2015-06-26 20:42:29.967949 [loginlb6_80 IdleConnection] cp1054.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:42:32.977157 [loginlb6_80] Server cp1054.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:42:32.977407 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:103:10:64:32:106 -w 1']
2015-06-26 20:44:41.042465 [textsvc_443] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:44:41.042994 ['-d -t 10.2.2.25:443 -r 10.64.0.104']
2015-06-26 20:44:41.052181 [textsvc_443 IdleConnection] cp1067.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 20:44:42.683187 [bitslb6_80] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:44:42.683553 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:133']
2015-06-26 20:44:42.690643 [bitslb6_80 IdleConnection] cp1056.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:44:43.124924 [textsvc_443] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:44:43.125163 ['-a -t 10.2.2.25:443 -r 10.64.0.104 -w 1']
2015-06-26 20:44:45.431838 [bitslb6_80] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:44:45.432257 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:133 -w 1']
2015-06-26 20:49:03.185402 [textlb_443] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:49:03.185814 ['-d -t 208.80.154.224:443 -r 10.64.0.102']
2015-06-26 20:49:03.192149 [textlb_443 IdleConnection] cp1065.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 20:49:06.035137 [textlb_443] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:49:06.035229 ['-a -t 208.80.154.224:443 -r 10.64.0.102 -w 1']
2015-06-26 20:51:43.833941 [loginlb_80] Monitoring instance IdleConnection reports server cp1055.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:51:43.834226 ['-d -t 208.80.154.233:80 -r 10.64.32.107']
2015-06-26 20:51:43.841473 [loginlb_80 IdleConnection] cp1055.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:51:46.780486 [loginlb_80] Server cp1055.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:51:46.780828 ['-a -t 208.80.154.233:80 -r 10.64.32.107 -w 1']
2015-06-26 20:56:41.904979 [textlb_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:56:41.905250 ['-d -t 208.80.154.224:80 -r 10.64.32.105']
2015-06-26 20:56:41.913960 [textlb_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:56:41.921362 [bitssvc_80] Monitoring instance IdleConnection reports server cp1069.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:56:41.921620 ['-d -t 10.2.2.23:80 -r 10.64.0.106']
2015-06-26 20:56:41.929596 [bitssvc_80 IdleConnection] cp1069.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:56:41.931241 [textsvc_80] Monitoring instance IdleConnection reports server cp1052.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:56:41.931424 ['-d -t 10.2.2.25:80 -r 10.64.32.104']
2015-06-26 20:56:41.939180 [textsvc_80 IdleConnection] cp1052.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:56:44.172789 [textsvc_80] Server cp1052.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:56:44.173038 ['-a -t 10.2.2.25:80 -r 10.64.32.104 -w 1']
2015-06-26 20:56:44.622263 [bitssvc_80] Server cp1069.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:56:44.622461 ['-a -t 10.2.2.23:80 -r 10.64.0.106 -w 1']
2015-06-26 20:56:44.667983 [textlb_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:56:44.668241 ['-a -t 208.80.154.224:80 -r 10.64.32.105 -w 1']
2015-06-26 20:57:47.458281 [textlb6_80] Monitoring instance IdleConnection reports server cp1055.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:57:47.458653 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:107']
2015-06-26 20:57:47.467670 [textlb6_80 IdleConnection] cp1055.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:57:49.791167 [textlb6_80] Server cp1055.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:57:49.791460 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:107 -w 1']
2015-06-26 20:58:52.994871 [mobilelb_80] Monitoring instance IdleConnection reports server cp1047.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:58:52.995219 ['-d -t 208.80.154.236:80 -r 10.64.32.99']
2015-06-26 20:58:53.002869 [mobilelb_80 IdleConnection] cp1047.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 20:58:54.650051 [textlb_443] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 20:58:54.650406 ['-d -t 208.80.154.224:443 -r 10.64.32.105']
2015-06-26 20:58:54.657358 [textlb_443 IdleConnection] cp1053.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 20:58:55.622868 [mobilelb_80] Server cp1047.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:58:55.623027 ['-a -t 208.80.154.236:80 -r 10.64.32.99 -w 1']
2015-06-26 20:58:57.406106 [textlb_443] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 20:58:57.406341 ['-a -t 208.80.154.224:443 -r 10.64.32.105 -w 1']
2015-06-26 21:02:09.595487 [textsvc_80] Monitoring instance IdleConnection reports server cp1068.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:02:09.595794 ['-d -t 10.2.2.25:80 -r 10.64.0.105']
2015-06-26 21:02:09.604444 [textsvc_80 IdleConnection] cp1068.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:02:11.876124 [textsvc_80] Server cp1068.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:02:11.876302 ['-a -t 10.2.2.25:80 -r 10.64.0.105 -w 1']
2015-06-26 21:05:26.208666 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1046.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:05:26.209000 ['-d -t 10.2.2.26:80 -r 10.64.32.98']
2015-06-26 21:05:26.216758 [mobilesvc_80 IdleConnection] cp1046.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:05:26.218451 [textsvc_80] Monitoring instance IdleConnection reports server cp1068.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:05:26.218811 ['-d -t 10.2.2.25:80 -r 10.64.0.105']
2015-06-26 21:05:26.225183 [textsvc_80 IdleConnection] cp1068.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:05:28.813282 [mobilesvc_80] Server cp1046.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:05:28.813506 ['-a -t 10.2.2.26:80 -r 10.64.32.98 -w 1']
2015-06-26 21:05:29.010748 [textsvc_80] Server cp1068.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:05:29.010979 ['-a -t 10.2.2.25:80 -r 10.64.0.105 -w 1']
2015-06-26 21:07:37.303922 [textlb6_80] Monitoring instance IdleConnection reports server cp1054.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:07:37.304217 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:106']
2015-06-26 21:07:37.312449 [textlb6_80 IdleConnection] cp1054.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:07:39.775403 [textlb6_80] Server cp1054.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:07:39.775562 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:106 -w 1']
2015-06-26 21:08:42.835530 [mobilesvc_443] Monitoring instance IdleConnection reports server cp1059.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:08:42.835833 ['-d -t 10.2.2.26:443 -r 10.64.0.96']
2015-06-26 21:08:42.843344 [mobilesvc_443 IdleConnection] cp1059.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 21:08:45.211295 [mobilesvc_443] Server cp1059.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:08:45.211551 ['-a -t 10.2.2.26:443 -r 10.64.0.96 -w 1']
2015-06-26 21:10:53.915751 [textlb_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:10:53.915948 ['-d -t 208.80.154.224:80 -r 10.64.0.102']
2015-06-26 21:10:53.923377 [textlb_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:10:56.627581 [textlb_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:10:56.627848 ['-a -t 208.80.154.224:80 -r 10.64.0.102 -w 1']
2015-06-26 21:12:25.536456 Connection received from 204.93.154.212
2015-06-26 21:12:26.774632 Connection received from 204.93.154.212
2015-06-26 21:13:13.446272 Connection received from 204.93.154.212
2015-06-26 21:17:27.106966 [mobilelb_80] Monitoring instance IdleConnection reports server cp1059.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:17:27.107272 ['-d -t 208.80.154.236:80 -r 10.64.0.96']
2015-06-26 21:17:27.114876 [mobilelb_80 IdleConnection] cp1059.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:17:29.792269 [mobilelb_80] Server cp1059.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:17:29.792523 ['-a -t 208.80.154.236:80 -r 10.64.0.96 -w 1']
2015-06-26 21:19:38.157019 [mobilelb6_443] Monitoring instance IdleConnection reports server cp1046.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:19:38.157357 ['-d -t [2620:0:861:ed1a::1:c]:443 -r 2620:0:861:103:10:64:32:98']
2015-06-26 21:19:38.166314 [mobilelb6_443 IdleConnection] cp1046.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 21:19:40.964317 [mobilelb6_443] Server cp1046.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:19:40.964602 ['-a -t [2620:0:861:ed1a::1:c]:443 -r 2620:0:861:103:10:64:32:98 -w 1']
2015-06-26 21:20:43.709114 [loginlb_80] Monitoring instance IdleConnection reports server cp1055.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:20:43.709460 ['-d -t 208.80.154.233:80 -r 10.64.32.107']
2015-06-26 21:20:43.718688 [loginlb_80 IdleConnection] cp1055.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:20:43.721195 [bitslb_80] Monitoring instance IdleConnection reports server cp1057.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:20:43.721594 ['-d -t 208.80.154.234:80 -r 10.64.32.134']
2015-06-26 21:20:43.728753 [bitslb_80 IdleConnection] cp1057.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:20:45.662894 [loginlb_80] Server cp1055.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:20:45.663109 ['-a -t 208.80.154.233:80 -r 10.64.32.107 -w 1']
2015-06-26 21:20:46.745528 [bitslb_80] Server cp1057.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:20:46.746127 ['-a -t 208.80.154.234:80 -r 10.64.32.134 -w 1']
2015-06-26 21:22:54.786845 [bitslb6_443] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:22:54.787095 ['-d -t [2620:0:861:ed1a::1:a]:443 -r 2620:0:861:103:10:64:32:133']
2015-06-26 21:22:54.794657 [bitslb6_443 IdleConnection] cp1056.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 21:22:58.114754 [bitslb6_443] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:22:58.114933 ['-a -t [2620:0:861:ed1a::1:a]:443 -r 2620:0:861:103:10:64:32:133 -w 1']
2015-06-26 21:26:42.733351 [textsvc_443] Monitoring instance IdleConnection reports server cp1068.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:26:42.733577 ['-d -t 10.2.2.25:443 -r 10.64.0.105']
2015-06-26 21:26:42.741090 [textsvc_443 IdleConnection] cp1068.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 21:26:45.501003 [textsvc_443] Server cp1068.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:26:45.501261 ['-a -t 10.2.2.25:443 -r 10.64.0.105 -w 1']
2015-06-26 21:32:44.620487 [mobilelb_80] Monitoring instance IdleConnection reports server cp1059.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:32:44.620934 ['-d -t 208.80.154.236:80 -r 10.64.0.96']
2015-06-26 21:32:44.628463 [mobilelb_80 IdleConnection] cp1059.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:32:47.387491 [mobilelb_80] Server cp1059.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:32:47.387732 ['-a -t 208.80.154.236:80 -r 10.64.0.96 -w 1']
2015-06-26 21:33:50.143697 [bitssvc_80] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:33:50.143947 ['-d -t 10.2.2.23:80 -r 10.64.32.133']
2015-06-26 21:33:50.152787 [bitssvc_80 IdleConnection] cp1056.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:33:50.154592 [loginlb6_80] Monitoring instance IdleConnection reports server cp1066.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:33:50.154949 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:103']
2015-06-26 21:33:50.162472 [loginlb6_80 IdleConnection] cp1066.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:33:53.109094 [bitssvc_80] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:33:53.109299 ['-a -t 10.2.2.23:80 -r 10.64.32.133 -w 1']
2015-06-26 21:33:53.360181 [loginlb6_80] Server cp1066.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:33:53.360416 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:103 -w 1']
2015-06-26 21:36:01.248991 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1059.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:36:01.249375 ['-d -t 10.2.2.26:80 -r 10.64.0.96']
2015-06-26 21:36:01.257597 [mobilesvc_80 IdleConnection] cp1059.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:36:01.259314 [textlb6_80] Monitoring instance IdleConnection reports server cp1068.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:36:01.259608 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:105']
2015-06-26 21:36:01.268090 [textlb6_80 IdleConnection] cp1068.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:36:01.270360 [bitslb6_443] Monitoring instance IdleConnection reports server cp1056.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:36:01.271160 ['-d -t [2620:0:861:ed1a::1:a]:443 -r 2620:0:861:103:10:64:32:133']
2015-06-26 21:36:01.277490 [bitslb6_443 IdleConnection] cp1056.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 21:36:03.898358 [bitslb6_443] Server cp1056.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:36:03.898554 ['-a -t [2620:0:861:ed1a::1:a]:443 -r 2620:0:861:103:10:64:32:133 -w 1']
2015-06-26 21:36:03.923474 [mobilesvc_80] Server cp1059.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:36:03.923780 ['-a -t 10.2.2.26:80 -r 10.64.0.96 -w 1']
2015-06-26 21:36:04.191068 [textlb6_80] Server cp1068.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:36:04.191333 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:105 -w 1']
2015-06-26 21:37:06.768407 [bitssvc_80] Monitoring instance IdleConnection reports server cp1069.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:37:06.768745 ['-d -t 10.2.2.23:80 -r 10.64.0.106']
2015-06-26 21:37:06.776130 [bitssvc_80 IdleConnection] cp1069.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:37:09.838653 [bitssvc_80] Server cp1069.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:37:09.838982 ['-a -t 10.2.2.23:80 -r 10.64.0.106 -w 1']
2015-06-26 21:43:39.975784 [textlb6_80] Monitoring instance IdleConnection reports server cp1053.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:43:39.976123 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:105']
2015-06-26 21:43:39.983061 [textlb6_80 IdleConnection] cp1053.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:43:42.299083 [textlb6_80] Server cp1053.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:43:42.299432 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:103:10:64:32:105 -w 1']
2015-06-26 21:44:53.319622 [bitslb6_80] Monitoring instance IdleConnection reports server cp1069.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:44:53.320031 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:106']
2015-06-26 21:44:53.327603 [bitslb6_80 IdleConnection] cp1069.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:44:55.943275 [bitslb6_80] Server cp1069.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:44:55.943628 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:106 -w 1']
2015-06-26 21:46:56.587252 [loginlb6_80] Monitoring instance IdleConnection reports server cp1054.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:46:56.587511 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:103:10:64:32:106']
2015-06-26 21:46:56.596288 [loginlb6_80 IdleConnection] cp1054.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:46:56.598019 [textlb_80] Monitoring instance IdleConnection reports server cp1052.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:46:56.598360 ['-d -t 208.80.154.224:80 -r 10.64.32.104']
2015-06-26 21:46:56.606502 [textlb_80 IdleConnection] cp1052.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:46:58.965696 [textlb_80] Server cp1052.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:46:58.965926 ['-a -t 208.80.154.224:80 -r 10.64.32.104 -w 1']
2015-06-26 21:46:59.364284 [loginlb6_80] Server cp1054.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:46:59.364509 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:103:10:64:32:106 -w 1']
2015-06-26 21:48:02.120862 [textlb_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:48:02.121403 ['-d -t 208.80.154.224:80 -r 10.64.0.104']
2015-06-26 21:48:02.130464 [textlb_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:48:05.043503 [textlb_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:48:05.043674 ['-a -t 208.80.154.224:80 -r 10.64.0.104 -w 1']
2015-06-26 21:53:31.447859 [bitslb6_80] Monitoring instance IdleConnection reports server cp1057.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:53:31.448107 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:134']
2015-06-26 21:53:31.456358 [bitslb6_80 IdleConnection] cp1057.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:53:33.455271 [bitslb6_80] Server cp1057.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:53:33.455457 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:103:10:64:32:134 -w 1']
2015-06-26 21:55:40.882048 [bitssvc_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:55:40.882377 ['-d -t 10.2.2.23:80 -r 10.64.0.107']
2015-06-26 21:55:40.890035 [bitssvc_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:55:40.891567 [bitslb6_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:55:40.891897 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:107']
2015-06-26 21:55:40.900181 [bitslb6_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:55:43.287758 [bitslb6_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:55:43.287984 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:107 -w 1']
2015-06-26 21:55:43.682769 [bitssvc_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:55:43.683018 ['-a -t 10.2.2.23:80 -r 10.64.0.107 -w 1']
2015-06-26 21:59:14.556258 [bitslb6_80] Monitoring instance IdleConnection reports server cp1069.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 21:59:14.556547 ['-d -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:106']
2015-06-26 21:59:14.564638 [bitslb6_80 IdleConnection] cp1069.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 21:59:17.350287 [bitslb6_80] Server cp1069.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 21:59:17.350501 ['-a -t [2620:0:861:ed1a::1:a]:80 -r 2620:0:861:101:10:64:0:106 -w 1']
2015-06-26 22:02:14.073905 [bitslb_80] Monitoring instance IdleConnection reports server cp1057.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:02:14.074236 ['-d -t 208.80.154.234:80 -r 10.64.32.134']
2015-06-26 22:02:14.081357 [bitslb_80 IdleConnection] cp1057.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:02:17.147792 [bitslb_80] Server cp1057.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:02:17.148082 ['-a -t 208.80.154.234:80 -r 10.64.32.134 -w 1']
2015-06-26 22:03:19.565761 [textlb6_80] Monitoring instance IdleConnection reports server cp1068.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:03:19.566395 ['-d -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:105']
2015-06-26 22:03:19.574928 [textlb6_80 IdleConnection] cp1068.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:03:22.265933 [textlb6_80] Server cp1068.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:03:22.266149 ['-a -t [2620:0:861:ed1a::1]:80 -r 2620:0:861:101:10:64:0:105 -w 1']
2015-06-26 22:04:25.105854 [loginlb6_80] Monitoring instance IdleConnection reports server cp1065.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:04:25.106400 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:102']
2015-06-26 22:04:25.114841 [loginlb6_80 IdleConnection] cp1065.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:04:27.511656 [loginlb6_80] Server cp1065.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:04:27.511927 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:102 -w 1']
2015-06-26 22:05:30.662012 [bitssvc_80] Monitoring instance IdleConnection reports server cp1070.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:05:30.662251 ['-d -t 10.2.2.23:80 -r 10.64.0.107']
2015-06-26 22:05:30.669342 [bitssvc_80 IdleConnection] cp1070.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:05:30.671213 [textlb_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:05:30.671598 ['-d -t 208.80.154.224:80 -r 10.64.0.104']
2015-06-26 22:05:30.677669 [textlb_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:05:32.345201 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1046.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:05:32.345451 ['-d -t 10.2.2.26:80 -r 10.64.32.98']
2015-06-26 22:05:32.353109 [mobilesvc_80 IdleConnection] cp1046.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:05:32.354835 [mobilelb6_80] Monitoring instance IdleConnection reports server cp1046.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:05:32.355134 ['-d -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:103:10:64:32:98']
2015-06-26 22:05:32.361559 [mobilelb6_80 IdleConnection] cp1046.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:05:33.494012 [bitssvc_80] Server cp1070.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:05:33.494147 ['-a -t 10.2.2.23:80 -r 10.64.0.107 -w 1']
2015-06-26 22:05:33.808723 [textlb_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:05:33.809038 ['-a -t 208.80.154.224:80 -r 10.64.0.104 -w 1']
2015-06-26 22:05:35.173208 [mobilesvc_80] Server cp1046.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:05:35.173389 ['-a -t 10.2.2.26:80 -r 10.64.32.98 -w 1']
2015-06-26 22:05:35.583173 [mobilelb6_80] Server cp1046.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:05:35.583421 ['-a -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:103:10:64:32:98 -w 1']
2015-06-26 22:10:47.197250 Connection received from 204.93.154.212
2015-06-26 22:10:48.452154 Connection received from 204.93.154.212
2015-06-26 22:11:35.145110 Connection received from 204.93.154.212
2015-06-26 22:13:09.434939 [mobilesvc_80] Monitoring instance IdleConnection reports server cp1059.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:13:09.435295 ['-d -t 10.2.2.26:80 -r 10.64.0.96']
2015-06-26 22:13:09.443637 [mobilesvc_80 IdleConnection] cp1059.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:13:09.453590 [loginlb6_80] Monitoring instance IdleConnection reports server cp1067.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:13:09.453879 ['-d -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:104']
2015-06-26 22:13:09.462199 [loginlb6_80 IdleConnection] cp1067.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:13:12.462332 [loginlb6_80] Server cp1067.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:13:12.462532 ['-a -t [2620:0:861:ed1a::1:9]:80 -r 2620:0:861:101:10:64:0:104 -w 1']
2015-06-26 22:13:12.557232 [mobilesvc_80] Server cp1059.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:13:12.557459 ['-a -t 10.2.2.26:80 -r 10.64.0.96 -w 1']
2015-06-26 22:15:20.516617 [mobilelb_443] Monitoring instance IdleConnection reports server cp1046.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:15:20.516987 ['-d -t 208.80.154.236:443 -r 10.64.32.98']
2015-06-26 22:15:20.524988 [mobilelb_443 IdleConnection] cp1046.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 22:15:23.326485 [mobilelb_443] Server cp1046.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:15:23.326766 ['-a -t 208.80.154.236:443 -r 10.64.32.98 -w 1']
2015-06-26 22:16:26.052613 [bitslb_80] Monitoring instance IdleConnection reports server cp1057.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:16:26.052939 ['-d -t 208.80.154.234:80 -r 10.64.32.134']
2015-06-26 22:16:26.060563 [bitslb_80 IdleConnection] cp1057.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:16:28.564544 [bitslb_80] Server cp1057.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:16:28.565070 ['-a -t 208.80.154.234:80 -r 10.64.32.134 -w 1']
2015-06-26 22:20:48.189633 [loginlb_443] Monitoring instance IdleConnection reports server cp1068.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:20:48.189950 ['-d -t 208.80.154.233:443 -r 10.64.0.105']
2015-06-26 22:20:48.196782 [loginlb_443 IdleConnection] cp1068.eqiad.wmnet (enabled/partially up/not pooled): Connection failed.
2015-06-26 22:20:49.844593 [textsvc_80] Monitoring instance IdleConnection reports server cp1055.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:20:49.845004 ['-d -t 10.2.2.25:80 -r 10.64.32.107']
2015-06-26 22:20:49.853487 [textsvc_80 IdleConnection] cp1055.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:20:50.884623 [loginlb_443] Server cp1068.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:20:50.884956 ['-a -t 208.80.154.233:443 -r 10.64.0.105 -w 1']
2015-06-26 22:20:52.315691 [textsvc_80] Server cp1055.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:20:52.316002 ['-a -t 10.2.2.25:80 -r 10.64.32.107 -w 1']
2015-06-26 22:26:15.874858 [mobilelb6_80] Monitoring instance IdleConnection reports server cp1060.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:26:15.875100 ['-d -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:101:10:64:0:97']
2015-06-26 22:26:15.883889 [mobilelb6_80 IdleConnection] cp1060.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:26:18.075420 [mobilelb6_80] Server cp1060.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:26:18.075605 ['-a -t [2620:0:861:ed1a::1:c]:80 -r 2620:0:861:101:10:64:0:97 -w 1']
2015-06-26 22:40:27.853480 [textsvc_80] Monitoring instance IdleConnection reports server cp1066.eqiad.wmnet (enabled/up/pooled) down: User timeout caused connection failure.
2015-06-26 22:40:27.853867 ['-d -t 10.2.2.25:80 -r 10.64.0.103']
2015-06-26 22:40:27.861426 [textsvc_80 IdleConnection] cp1066.eqiad.wmnet (enabled/down/not pooled): Connection failed.
2015-06-26 22:40:30.870872 [textsvc_80] Server cp1066.eqiad.wmnet (enabled/partially up/not pooled) is up
2015-06-26 22:40:30.871221 ['-a -t 10.2.2.25:80 -r 10.64.0.103 -w 1']

This morning I went ahead and manually applied the lvs1004 fixes on lvs1001 as well, just to reduce the depool/repool insanity there for now.

Change 221303 merged by BBlack:
Use overridden direct DNS for all LVS

https://gerrit.wikimedia.org/r/221303

Change 221304 merged by BBlack:
resolv.conf: lower timeout from 3s to 1s, attempts

https://gerrit.wikimedia.org/r/221304

BBlack claimed this task.

Closing this as the patches were merged. Will open a separate ticket for future work re: dnspq kinds of ideas...

PyBal resolves IPs once at startup for managing the IPVS state. Did we neglect to extend that to IdleConnection?

PyBal resolves IPs once at startup for managing the IPVS state. Did we neglect to extend that to IdleConnection?

Yes, both IdleConnection and ProxyFetch use Twisted's connectTCP, which resolves IPs calling socket.gethostbyname as mentioned in T154759#3403250.

We don't want to resolve only once at startup though, do we?

Change 520441 had a related patch set uploaded (by BBlack; owner: BBlack):
[operations/puppet@production] anycast recdns: use for LVS balancers

https://gerrit.wikimedia.org/r/520441

Change 525549 had a related patch set uploaded (by BBlack; owner: BBlack):
[operations/puppet@production] anycast recdns: use for eqsin LVS balancers

https://gerrit.wikimedia.org/r/525549

Change 525550 had a related patch set uploaded (by BBlack; owner: BBlack):
[operations/puppet@production] anycast recdns: use for esams LVS balancers

https://gerrit.wikimedia.org/r/525550

Change 525551 had a related patch set uploaded (by BBlack; owner: BBlack):
[operations/puppet@production] anycast recdns: use for ulsfo LVS balancers

https://gerrit.wikimedia.org/r/525551

Change 525552 had a related patch set uploaded (by BBlack; owner: BBlack):
[operations/puppet@production] anycast recdns: use for codfw LVS balancers

https://gerrit.wikimedia.org/r/525552

Change 525549 merged by BBlack:
[operations/puppet@production] anycast recdns: use for eqsin LVS balancers

https://gerrit.wikimedia.org/r/525549

Change 525550 merged by BBlack:
[operations/puppet@production] anycast recdns: use for esams LVS balancers

https://gerrit.wikimedia.org/r/525550

Change 525551 merged by BBlack:
[operations/puppet@production] anycast recdns: use for ulsfo LVS balancers

https://gerrit.wikimedia.org/r/525551

Change 525552 merged by BBlack:
[operations/puppet@production] anycast recdns: use for codfw LVS balancers

https://gerrit.wikimedia.org/r/525552

Change 520441 merged by BBlack:
[operations/puppet@production] anycast recdns: use for all LVS balancers

https://gerrit.wikimedia.org/r/520441