-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Closed
Labels
Description
Do you want to request a feature or report a bug?
Bug
What did you do?
Need some help figuring out why mailtrain isn't responding through Traefik.
When you hit the edit content page in mailtrain it loads a bunch of resources (png's and css) very very slowly....
when hitting the published ports (with out traefik) directly to ports 3000,3003, 3004 works fine and loads resources., When running through traefik it seems to throttle it and response times are over 1 minute.
What did you expect to see?
normal http gets with 200's
What did you see instead?
http gets are lagged over 1 min or don't respond at all with 500 errors.
Output of traefik version: (What version of Traefik are you using?)
Version: 2.1.1
Codename: cantal
Go version: go1.13.5
Built: 2019-12-12T19:01:37Z
OS/Arch: linux/amd64
What is your environment & configuration (arguments, toml, provider, platform, ...)?
services:
mysql:
image: mariadb:10.4
environment:
- MYSQL_ROOT_PASSWORD=mailtrain
- MYSQL_DATABASE=mailtrain
- MYSQL_USER=mailtrain
- MYSQL_PASSWORD=mailtrain
networks:
- internal
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- mysql-data:/var/lib/mysql
mongo:
image: mongo:4-xenial
networks:
- internal
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- mongo-data:/data/db
- mongo-data-config:/data/configdb
redis:
image: redis:5
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- redis-data:/data
networks:
- internal
mailtrain:
depends_on:
- mysql
- redis
- mongo
image: mailtrain/mailtrain:latest
ports:
- "3000:3000"
- "3003:3003"
- "3004:3004"
environment:
- WITH_PROXY=true
- WWWW_PROXY=true
- URL_BASE_TRUSTED='https://mailtrain.example.com'
- URL_BASE_SANDBOX='https://sbox.example.com'
- URL_BASE_PUBLIC='https://lists.example.com'
- MYSQL_HOST=mysql
- MYSQL_DATABASE=mailtrain
- MYSQL_USER=mailtrain
- MYSQL_PASSWORD=mailtrain
networks:
- internal
- traefik-public
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- files:/app/server/files
deploy:
labels:
- traefik.enable=true
#- traefik.http.routers.${NAME}.entrypoints=web
#- traefik.http.routers.${NAME}.rule=Host(`mailtrain.example.com`)
#- traefik.http.routers.${NAME}.middlewares=redirect-to-https@docker
#- traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https
- traefik.http.routers.${NAME}.entrypoints=websecure
- traefik.http.routers.${NAME}.rule=Host(`mailtrain.example.com`)
- traefik.http.routers.${NAME}.service=${NAME}
- traefik.http.routers.${NAME}.tls=true
- traefik.http.routers.${NAME}.tls.domains[0].main=mailtrain.example.com
- traefik.http.routers.${NAME}.tls.certresolver=letsencryptresolver
- traefik.http.services.${NAME}.loadbalancer.server.port=3000
- traefik.http.routers.${NAME}sbox.entrypoints=websecure
- traefik.http.routers.${NAME}sbox.rule=Host(`sbox.example.com`)
- traefik.http.routers.${NAME}sbox.service=${NAME}sbox
- traefik.http.routers.${NAME}sbox.tls=true
- traefik.http.routers.${NAME}sbox.tls.domains[0].main=sbox.example.com
- traefik.http.routers.${NAME}sbox.tls.certresolver=letsencryptresolver
- traefik.http.services.${NAME}sbox.loadbalancer.server.port=3003
- traefik.http.routers.${NAME}lists.entrypoints=websecure
- traefik.http.routers.${NAME}lists.rule=Host(`lists.example.com`)
- traefik.http.routers.${NAME}lists.service=${NAME}lists
- traefik.http.routers.${NAME}lists.tls=true
- traefik.http.routers.${NAME}lists.tls.domains[0].main=lists.example.com
- traefik.http.routers.${NAME}lists.tls.certresolver=letsencryptresolver
- traefik.http.services.${NAME}lists.loadbalancer.server.port=3004
volumes:
mysql-data:
redis-data:
mongo-data:
mongo-data-config:
files:
networks:
internal:
traefik-public:
external: true
Not seeing any errors, just lag in the DEBUG
time="2019-12-14T19:13:41Z" level=debug msg="Adding certificate for domain(s) sbox.example.com",
time="2019-12-14T19:13:42Z" level=debug msg="Adding certificate for domain(s) sbox.example.com",
time="2019-12-14T19:13:42Z" level=debug msg="Creating middleware" routerName=mailtrainsbox@docker entryPointName=websecure serviceName=mailtrainsbox middlewareName=pipelining middlewareType=Pipelining,
time="2019-12-14T19:13:42Z" level=debug msg="Creating middleware" middlewareName=metrics-service routerName=mailtrainsbox@docker entryPointName=websecure serviceName=mailtrainsbox middlewareType=Metrics,
time="2019-12-14T19:13:42Z" level=debug msg="Creating load-balancer" routerName=mailtrainsbox@docker entryPointName=websecure serviceName=mailtrainsbox,
time="2019-12-14T19:13:42Z" level=debug msg="Creating server 0 http://10.0.2.223:3003" routerName=mailtrainsbox@docker entryPointName=websecure serviceName=mailtrainsbox serverName=0,
time="2019-12-14T19:13:42Z" level=debug msg="Added outgoing tracing middleware mailtrainsbox" routerName=mailtrainsbox@docker middlewareName=tracing middlewareType=TracingForwarder entryPointName=websecure,
time="2019-12-14T19:13:42Z" level=debug msg="Looking for provided certificate(s) to validate [\"sbox.example.com\"]..." providerName=letsencryptresolver.acme,
time="2019-12-14T19:13:42Z" level=debug msg="No ACME certificate generation required for domains [\"sbox.example.com\"]." providerName=letsencryptresolver.acme,
time="2019-12-14T19:13:56Z" level=debug msg="Adding certificate for domain(s) sbox.example.com",
time="2019-12-14T19:13:57Z" level=debug msg="Creating middleware" middlewareName=pipelining routerName=mailtrainsbox@docker entryPointName=websecure serviceName=mailtrainsbox middlewareType=Pipelining,
time="2019-12-14T19:13:57Z" level=debug msg="Creating middleware" middlewareName=metrics-service middlewareType=Metrics routerName=mailtrainsbox@docker entryPointName=websecure serviceName=mailtrainsbox,
time="2019-12-14T19:13:57Z" level=debug msg="Creating load-balancer" routerName=mailtrainsbox@docker entryPointName=websecure serviceName=mailtrainsbox,
time="2019-12-14T19:13:57Z" level=debug msg="Creating server 0 http://10.0.2.223:3003" serverName=0 routerName=mailtrainsbox@docker entryPointName=websecure serviceName=mailtrainsbox,
time="2019-12-14T19:13:57Z" level=debug msg="Added outgoing tracing middleware mailtrainsbox" entryPointName=websecure routerName=mailtrainsbox@docker middlewareName=tracing middlewareType=TracingForwarder,
time="2019-12-14T19:13:57Z" level=debug msg="Looking for provided certificate(s) to validate [\"sbox.example.com\"]..." providerName=letsencryptresolver.acme,
time="2019-12-14T19:13:57Z" level=debug msg="No ACME certificate generation required for domains [\"sbox.example.com\"]." providerName=letsencryptresolver.acme,
time="2019-12-14T19:14:04Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/mosaico/editor\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://mailtrain.example.com/campaigns/1/content\"],\"Sec-Fetch-Mode\":[\"nested-navigate\"],\"Sec-Fetch-Site\":[\"same-site\"],\"Upgrade-Insecure-Requests\":[\"1\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/mosaico/editor\",\"TLS\":null}",
time="2019-12-14T19:14:04Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/mosaico/editor\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://mailtrain.example.com/campaigns/1/content\"],\"Sec-Fetch-Mode\":[\"nested-navigate\"],\"Sec-Fetch-Site\":[\"same-site\"],\"Upgrade-Insecure-Requests\":[\"1\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/mosaico/editor\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:04Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/mosaico/editor\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://mailtrain.example.com/campaigns/1/content\"],\"Sec-Fetch-Mode\":[\"nested-navigate\"],\"Sec-Fetch-Site\":[\"same-site\"],\"Upgrade-Insecure-Requests\":[\"1\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/mosaico/editor\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js?v=0.17.5\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js?v=0.17.5\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico.min.js\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico.min.js?v=0.17.5\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico.min.js\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico.min.js?v=0.17.5\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.css?v=0.17.5\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.css?v=0.17.5\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/client/mosaico-root.js\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/client/mosaico-root.js\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/client/mosaico-root.js\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/client/mosaico-root.js\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css?v=0.17.5\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css?v=0.17.5\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.css?v=0.17.5\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css?v=0.17.5\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico.min.js\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico.min.js?v=0.17.5\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=0.17.5\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js?v=0.17.5\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js.map\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"none\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js.map\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" ForwardURL="http://10.0.2.223:3003" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js.map\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"none\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js.map\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico.min.js.map\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"none\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico.min.js.map\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" ForwardURL="http://10.0.2.223:3003" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico.min.js.map\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"none\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico.min.js.map\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/client/mosaico-root.js\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/client/mosaico-root.js\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico.min.js.map\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"none\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico.min.js.map\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js.map\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"none\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.js.map\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/index.html\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"],\"X-Requested-With\":[\"XMLHttpRequest\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/index.html\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" ForwardURL="http://10.0.2.223:3003" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/index.html\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"],\"X-Requested-With\":[\"XMLHttpRequest\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/index.html\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/index.html\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"],\"X-Requested-With\":[\"XMLHttpRequest\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/index.html\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css.map\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"none\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css.map\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" ForwardURL="http://10.0.2.223:3003" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css.map\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"none\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css.map\",\"TLS\":null}",
time="2019-12-14T19:14:05Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css.map\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"none\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/mosaico-material.min.css.map\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/notoregular/noto-sans-400-normal.woff\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Origin\":[\"https://sbox.example.com\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.css?v=0.17.5\"],\"Sec-Fetch-Mode\":[\"cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/notoregular/noto-sans-400-normal.woff\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/notoregular/noto-sans-400-normal.woff\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Origin\":[\"https://sbox.example.com\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.css?v=0.17.5\"],\"Sec-Fetch-Mode\":[\"cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/notoregular/noto-sans-400-normal.woff\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/fontawesome/fontawesome-webfont.woff2\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=4.7.0\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Origin\":[\"https://sbox.example.com\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/static/mosaico/rs/mosaico-material.min.css?v=0.17.5\"],\"Sec-Fetch-Mode\":[\"cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/fontawesome/fontawesome-webfont.woff2?v=4.7.0\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/fontawesome/fontawesome-webfont.woff2\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=4.7.0\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Origin\":[\"https://sbox.example.com\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/static/mosaico/rs/mosaico-material.min.css?v=0.17.5\"],\"Sec-Fetch-Mode\":[\"cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/fontawesome/fontawesome-webfont.woff2?v=4.7.0\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/notoregular/noto-sans-400-normal.woff\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Origin\":[\"https://sbox.example.com\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/static/mosaico/rs/mosaico-libs-and-tinymce.min.css?v=0.17.5\"],\"Sec-Fetch-Mode\":[\"cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/notoregular/noto-sans-400-normal.woff\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/fontawesome/fontawesome-webfont.woff2\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"v=4.7.0\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"*/*\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Origin\":[\"https://sbox.example.com\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/static/mosaico/rs/mosaico-material.min.css?v=0.17.5\"],\"Sec-Fetch-Mode\":[\"cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/fontawesome/fontawesome-webfont.woff2?v=4.7.0\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/logoBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/logoBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" ForwardURL="http://10.0.2.223:3003" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/logoBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/logoBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/sideArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/sideArticleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/sideArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/sideArticleBlock.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/singleArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/singleArticleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/singleArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/singleArticleBlock.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/titleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/titleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" ForwardURL="http://10.0.2.223:3003" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/titleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/titleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleArticleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleArticleBlock.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleArticleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleArticleBlock.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/textBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/textBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/textBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/textBlock.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/hrBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/hrBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/hrBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/hrBlock.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleImageBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleImageBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleImageBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleImageBlock.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/static/mosaico/rs/img/mosaico32.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=Ei3-xSK_PaYsAcX3-_EkluqT; i18nextLng=en-US; connect.sid=s%3Az1pIMlofnKAl6qLi43myw568kITUoxe3.uPWap%2B1TaldU88bg08FRqIB9MIYuPUJeikgyi5WHyAg\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-site\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"mailtrain.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"mailtrain.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32783\",\"RequestURI\":\"/static/mosaico/rs/img/mosaico32.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/static/mosaico/rs/img/mosaico32.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=Ei3-xSK_PaYsAcX3-_EkluqT; i18nextLng=en-US; connect.sid=s%3Az1pIMlofnKAl6qLi43myw568kITUoxe3.uPWap%2B1TaldU88bg08FRqIB9MIYuPUJeikgyi5WHyAg\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-site\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"mailtrain.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"mailtrain.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32783\",\"RequestURI\":\"/static/mosaico/rs/img/mosaico32.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3000",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/socialBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/socialBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/socialBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/socialBlock.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/buttonBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/buttonBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" ForwardURL="http://10.0.2.223:3003" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/buttonBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/buttonBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/spacerBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/spacerBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/imageBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/imageBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/imageBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/imageBlock.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleImageBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleImageBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/spacerBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/spacerBlock.png\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" ForwardURL="http://10.0.2.223:3003" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleImageBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleImageBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/static/mosaico/templates/versafix-1/img/sponsor.gif\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-site\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"lists.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"lists.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32795\",\"RequestURI\":\"/static/mosaico/templates/versafix-1/img/sponsor.gif\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/static/mosaico/templates/versafix-1/img/sponsor.gif\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-site\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"lists.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"lists.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32795\",\"RequestURI\":\"/static/mosaico/templates/versafix-1/img/sponsor.gif\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3004",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/static/mosaico/templates/versafix-1/img/sponsor.gif\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-site\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"lists.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"lists.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32795\",\"RequestURI\":\"/static/mosaico/templates/versafix-1/img/sponsor.gif\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/logoBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/logoBlock.png\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/skins/gray-flat/skin.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/skins/gray-flat/skin.min.css\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/skins/gray-flat/skin.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/skins/gray-flat/skin.min.css\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/skins/gray-flat/skin.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/skins/gray-flat/skin.min.css\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: begin ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/skins/gray-flat/content.inline.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/skins/gray-flat/content.inline.min.css\",\"TLS\":null}",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: Forwarding this request to URL" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/skins/gray-flat/content.inline.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/skins/gray-flat/content.inline.min.css\",\"TLS\":null}" ForwardURL="http://10.0.2.223:3003",
time="2019-12-14T19:14:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/anonymous/static/mosaico/rs/skins/gray-flat/content.inline.min.css\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"text/css,*/*;q=0.1\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/anonymous/static/mosaico/rs/skins/gray-flat/content.inline.min.css\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/static/mosaico/rs/img/mosaico32.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=Ei3-xSK_PaYsAcX3-_EkluqT; i18nextLng=en-US; connect.sid=s%3Az1pIMlofnKAl6qLi43myw568kITUoxe3.uPWap%2B1TaldU88bg08FRqIB9MIYuPUJeikgyi5WHyAg\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-site\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"mailtrain.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"mailtrain.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32783\",\"RequestURI\":\"/static/mosaico/rs/img/mosaico32.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/spacerBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/spacerBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/imageBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/imageBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleImageBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleImageBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/sideArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/sideArticleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/singleArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/singleArticleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/titleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/titleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/tripleArticleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleArticleBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleArticleBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/hrBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/hrBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/socialBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/socialBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/textBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/textBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleImageBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/doubleImageBlock.png\",\"TLS\":null}",
time="2019-12-14T19:15:06Z" level=debug msg="vulcand/oxy/roundrobin/rr: completed ServeHttp on request" Request="{\"Method\":\"GET\",\"URL\":{\"Scheme\":\"\",\"Opaque\":\"\",\"User\":null,\"Host\":\"\",\"Path\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/buttonBlock.png\",\"RawPath\":\"\",\"ForceQuery\":false,\"RawQuery\":\"\",\"Fragment\":\"\"},\"Proto\":\"HTTP/2.0\",\"ProtoMajor\":2,\"ProtoMinor\":0,\"Header\":{\"Accept\":[\"image/webp,image/apng,image/*,*/*;q=0.8\"],\"Accept-Encoding\":[\"gzip, deflate, br\"],\"Accept-Language\":[\"en-US,en;q=0.9\"],\"Cache-Control\":[\"no-cache\"],\"Cookie\":[\"experimentation_subject_id=ImIyZmMyM2M3LTkwMmEtNGViZC1hMmJiLWVmNjQwN2M0ZGJlYiI%3D--39eb111e7dce5b63fae873abaa2f9945753867aa; _ga=GA1.2.856712420.1576298234; _gid=GA1.2.1106948442.1576298234; _csrf=4NwK9D3DcrqNeLGsQqg4mygT; i18nextLng=en-US\"],\"Dnt\":[\"1\"],\"Pragma\":[\"no-cache\"],\"Referer\":[\"https://sbox.example.com/anonymous/mosaico/editor\"],\"Sec-Fetch-Mode\":[\"no-cors\"],\"Sec-Fetch-Site\":[\"same-origin\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\"],\"X-Forwarded-Host\":[\"sbox.example.com\"],\"X-Forwarded-Port\":[\"443\"],\"X-Forwarded-Proto\":[\"https\"],\"X-Forwarded-Server\":[\"917552241a98\"],\"X-Real-Ip\":[\"10.0.0.7\"]},\"ContentLength\":0,\"TransferEncoding\":null,\"Host\":\"sbox.example.com\",\"Form\":null,\"PostForm\":null,\"MultipartForm\":null,\"Trailer\":null,\"RemoteAddr\":\"10.0.0.7:32793\",\"RequestURI\":\"/14527bc36a6712d2e1fcac667dc447a4d626b2f69ea74b20/mosaico/templates/1/edres/buttonBlock.png\",\"TLS\":null}",
Reactions are currently unavailable
